/** * Type that defines a constructable class */ export declare type Constructable = (new (...args: any[]) => object) & (new (...args: any[]) => T); //# sourceMappingURL=constructable.d.ts.map