We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376ce66 commit 78bda78Copy full SHA for 78bda78
packages/core/src/api-struct.ts
@@ -45,10 +45,10 @@ type DevupComponentStructByRole = {
45
type DevupObjectAll<T extends string> = ExtractValue<
46
DevupResponseComponentStruct,
47
T,
48
- {}
+ unknown
49
> &
50
- ExtractValue<DevupRequestComponentStruct, T, {}> &
51
- ExtractValue<DevupErrorComponentStruct, T, {}>
+ ExtractValue<DevupRequestComponentStruct, T, unknown> &
+ ExtractValue<DevupErrorComponentStruct, T, unknown>
52
53
type DevupObjectSpecific<
54
R extends keyof DevupComponentStructByRole,
0 commit comments