UNPKG

@blueprintjs/core

Version:
6 lines (5 loc) 231 B
/** * Generic interface defining constructor types, such as classes. This is used to type the class * itself in meta-programming situations such as decorators. */ export declare type IConstructor<T> = new (...args: any[]) => T;