UNPKG

naily

Version:

写了一个没有模块系统的 Minimal Nest.js 写着玩的~

7 lines (6 loc) 260 B
import { IRouterHandler, IRouterMatcher } from "express-serve-static-core"; export interface IMounted { boot(port: number, callBack?: Function): void; useMiddleware: IRouterHandler<this> & IRouterMatcher<this>; useFilter(filter: Function): this; }