UNPKG

@anyhowstep/ts-route-server

Version:

8 lines (6 loc) 266 B
import * as express from "express"; import * as TsRouteShared from "@anyhowstep/ts-route-shared"; export interface Response<D, M, L> extends express.Response { locals : L; respond : (arg : TsRouteShared.Response<D, M>|Error|Error[]) => Response<D, M, L>; }