/** * Constructable class type definition */ export interface Type extends Function { new (...args: any[]): T; }