UNPKG

xmt-base

Version:

Backend Server Framework of XmT Inc.

10 lines (9 loc) 352 B
export { Router } from "./router"; export { requestProto } from "./prototype/request"; export { responseProto } from "./prototype/response"; export { schedule } from "./schedule"; export { buildRunList } from "./runList"; export interface Task { (request: any, response: any, next?: (error?) => void): void; xmt_httpMethod?: string; }