Skip to content

Commit 78bda78

Browse files
committed
Fix warning
1 parent 376ce66 commit 78bda78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/api-struct.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ type DevupComponentStructByRole = {
4545
type DevupObjectAll<T extends string> = ExtractValue<
4646
DevupResponseComponentStruct,
4747
T,
48-
{}
48+
unknown
4949
> &
50-
ExtractValue<DevupRequestComponentStruct, T, {}> &
51-
ExtractValue<DevupErrorComponentStruct, T, {}>
50+
ExtractValue<DevupRequestComponentStruct, T, unknown> &
51+
ExtractValue<DevupErrorComponentStruct, T, unknown>
5252

5353
type DevupObjectSpecific<
5454
R extends keyof DevupComponentStructByRole,

0 commit comments

Comments
 (0)