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