InternalServerErrorHandler.d.ts 357 B

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