/** * ## 构造函数类型 * * @author Big Mogician * @export * @interface IConstructor * @template T */ export interface IConstructor { new (...args: any[]): T; }