Repository URL to install this package:
|
Version:
7.0.10 ▾
|
export interface NestMiddleware<TRequest = any, TResponse = any> {
use(req: TRequest, res: TResponse, next: () => void): any;
}