5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
|
/**
|
||
|
* Type definition of a class constructor.
|
||
|
*/
|
||
|
export type ConstructorOf<T extends object> = { new(): T; };
|