Skip to content

Commit 73ea68c

Browse files
committed
Disable ESLint warning
1 parent 160337c commit 73ea68c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,6 +1123,7 @@ type Flatten<T> = T extends Primitive
11231123
? { [K in keyof T]: Flatten<T[K]> }
11241124
: T;
11251125

1126+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
11261127
type Infer<Parse extends (...args: any) => any> = Flatten<ReturnType<Parse>>;
11271128

11281129
/* JSON-RPC types */

0 commit comments

Comments
 (0)