UNPKG

routing-controllers

Version:

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

20 lines 696 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ResponseHandlerMetadata = void 0; /** * Response handler metadata. */ 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; } } exports.ResponseHandlerMetadata = ResponseHandlerMetadata; //# sourceMappingURL=ResponseHandleMetadata.js.map