Skip to content

Commit 40a5d27

Browse files
Correct type
1 parent e1634d5 commit 40a5d27

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
@@ -38,5 +38,5 @@ export type Concrete<
3838
*/
3939
export type Class<C extends object = {}> =
4040
& (abstract new (...args: any[]) => any)
41-
& { readonly prototype: Object }
41+
& { readonly prototype: object }
4242
& Omit<C, 'prototype'>;

0 commit comments

Comments
 (0)