export interface Class { new (...args: Args): T; prototype: T; } export type Constructor = new (...args: any[]) => T; export declare function extend(ctor: Class, ...mixins: any[]): void; //# sourceMappingURL=class.d.ts.map