UNPKG

132 BTypeScriptView Raw
1export interface NestMiddleware<TRequest = any, TResponse = any> {
2 use(req: TRequest, res: TResponse, next: () => void): any;
3}