UNPKG

146 BTypeScriptView Raw
1/**
2 * Special type allows to use Function and get known its type as T.
3 */
4export declare type ObjectType<T> = {
5 new (...args: any[]): T;
6};