1234567 |
- import { Middleware, Request, Response, NextFunction } from '../base/http';
- declare class NotFoundErrorHandler extends Middleware {
- protected order: number;
- protected route: null;
- protected action: (req: Request, res: Response, next: NextFunction) => any;
- }
- export default NotFoundErrorHandler;
|