UNPKG

283 BTypeScriptView Raw
1/**
2 * Generic interface defining constructor types, such as classes. This is used to type the class
3 * itself in meta-programming situations such as decorators.
4 *
5 * @deprecated will be removed in Blueprint v5.0
6 */
7export declare type IConstructor<T> = new (...args: any[]) => T;