UNPKG

@blueprintjs/core

Version:
8 lines (7 loc) 283 B
/** * Generic interface defining constructor types, such as classes. This is used to type the class * itself in meta-programming situations such as decorators. * * @deprecated will be removed in Blueprint v4.0 */ export declare type IConstructor<T> = new (...args: any[]) => T;