UNPKG

ts-api-core

Version:

Nodejs api framework core

5 lines (4 loc) 198 B
/** 目标类型 (不带初始化参数) */ export declare type TargetType<T> = (new () => T); /** 类类型 */ export declare type ClassType<T> = (new (...args: any | any[] | undefined) => T);