/** * Type for what object is instances of */ export interface Type { new (...args: any[]): T; }