export type Ctor = { new (): T; prototype: Object; } export type CtorWithArgs = { new (...ctorArgs: any[]): T; prototype: Object; }