Interface ExpressMiddleware
interface ExpressMiddleware ((req, res, next) => void)
- ExpressMiddleware(req, res, next): void
Parameters
- req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
- res: Response<any, Record<string, any>>
- next: NextFunction
Returns void