UNPKG

routing-controllers

Version:

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

16 lines 523 B
/** * "Use interceptor" metadata. */ export class InterceptorMetadata { // ------------------------------------------------------------------------- // Constructor // ------------------------------------------------------------------------- constructor(args) { this.target = args.target; this.method = args.method; this.interceptor = args.interceptor; this.priority = args.priority; this.global = args.global; } } //# sourceMappingURL=InterceptorMetadata.js.map