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) 291 B
import { BadRequestError } from '../http-error/BadRequestError'; /** * Caused when user parameter is invalid json string and cannot be parsed. */ export declare class ParameterParseJsonError extends BadRequestError { name: string; constructor(parameterName: string, value: any); }