Core/src/utils.ts

5 lines
112 B
TypeScript
Raw Normal View History

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