UNPKG

routing-controllers

Version:

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

14 lines (13 loc) 279 B
/** * Metadata used to store registered error handlers. */ export interface ErrorHandlerMetadataArgs { /** * Object class of the error handler class. */ target: Function; /** * Execution priority of the error handler. */ priority: number; }