UNPKG

routing-controllers

Version:

Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage for Express / Koa using TypeScript.

9 lines (8 loc) 197 B
import { HttpError } from './HttpError'; /** * Exception for 500 HTTP error. */ export declare class InternalServerError extends HttpError { name: string; constructor(message: string); }