UNPKG

233 BTypeScriptView Raw
1/**
2 * @see [Middleware](https://docs.nestjs.com/middleware)
3 *
4 * @publicApi
5 */
6export interface NestMiddleware<TRequest = any, TResponse = any> {
7 use(req: TRequest, res: TResponse, next: (error?: Error | any) => void): any;
8}