MutableClass work
This commit is contained in:
8
src/StaticType.ts
Normal file
8
src/StaticType.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { AbstractConstructor } from "type-fest"
|
||||
|
||||
|
||||
/**
|
||||
* Represents the static members of a class.
|
||||
* @template C - A class.
|
||||
*/
|
||||
export type StaticType<C extends AbstractConstructor<any>> = Omit<C, "prototype">
|
||||
Reference in New Issue
Block a user