InternalServerErrorHandler.d.ts 331 B

1234567
  1. import { Middleware, Request, Response, NextFunction } from '../base/http';
  2. declare class InternalServerErrorHandler extends Middleware {
  3. protected order: number;
  4. protected route: null;
  5. protected action: (err: Error, req: Request, res: Response, next: NextFunction) => any;
  6. }
  7. export default InternalServerErrorHandler;