UNPKG

114 BTypeScriptView Raw
1/**
2 * Represents some Type of the Object.
3 */
4export declare type ObjectType<T> = {
5 new (): T;
6} | Function;