routing-controllers
Version:
Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage for Express / Koa using TypeScript.
16 lines • 525 B
JavaScript
/**
* Response handler metadata.
*/
export class ResponseHandlerMetadata {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
constructor(args) {
this.target = args.target;
this.method = args.method;
this.type = args.type;
this.value = args.value;
this.secondaryValue = args.secondaryValue;
}
}
//# sourceMappingURL=ResponseHandleMetadata.js.map