Skip to content

Commit 463f63d

Browse files
Correct type
1 parent 40a5d27 commit 463f63d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

class.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ export type Concrete<
3939
export type Class<C extends object = {}> =
4040
& (abstract new (...args: any[]) => any)
4141
& { readonly prototype: object }
42-
& Omit<C, 'prototype'>;
42+
& Omit<C, never>;

0 commit comments

Comments
 (0)