UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

9 lines (8 loc) • 225 B
/** * @see [Middleware](https://docs.nestjs.com/middleware) * * @publicApi */ export interface NestMiddleware<TRequest = any, TResponse = any> { use(req: TRequest, res: TResponse, next: (error?: any) => void): any; }