UNPKG

@nestjs/common

Version:

Nest - modern, fast, powerful node.js web framework (@common)

5 lines (4 loc) 196 B
export declare type MiddlewareFunction = (req, res, next) => any | Promise<any>; export interface NestMiddleware { resolve(...args: any[]): MiddlewareFunction | Promise<MiddlewareFunction>; }