2 lines
52 B
TypeScript
2 lines
52 B
TypeScript
|
export type Class<T> = { new (...args: any[]): T };
|