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>;
}