Skip to content

Commit a74d1bc

Browse files
committed
fix: buid
1 parent f2c6425 commit a74d1bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/src/globals.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export type InstanceType<T> = T extends new (...args: any[]) => infer R
2020
? R
2121
: never;
2222

23-
export declare type ClassType<TClass = any, TArgs = any[]> = {
23+
export declare type ClassType<TClass = any, TArgs extends any[] = any[]> = {
2424
new (...args: TArgs): TClass;
2525
};
2626

0 commit comments

Comments
 (0)