/** * A callable type with "new" operator allows * class and constructor. */ export interface Constructor { new (...args: any[]): T; }