export interface AnyConstructor { new (...args: any[]): {}; } export interface Constructor { readonly prototype: T; new (...args: any[]): T; }