UNPKG

astroboy

Version:

Astroboy(阿童木)is a Nodejs SFB(Separation of Front and Back ends) framework, built on koa2.

12 lines (11 loc) 179 B
/** * ## 构造函数类型 * * @author Big Mogician * @export * @interface IConstructor * @template T */ export interface IConstructor<T> { new (...args: any[]): T; }