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) 201 B
import { HttpError } from './HttpError'; /** * Exception for todo HTTP error. */ export declare class MethodNotAllowedError extends HttpError { name: string; constructor(message?: string); }