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) 299 B
import { InternalServerError } from '../http-error/InternalServerError'; /** * Thrown when authorizationChecker function is not defined in routing-controllers options. */ export declare class AuthorizationCheckerNotDefinedError extends InternalServerError { name: string; constructor(); }