cds-routing-handlers
Version:
Package to route and implement CDS handlers via a class based approach in Typescript.
23 lines • 789 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ParamType = void 0;
/**
* Parameter type.
*
* @export
* @enum {number}
*/
var ParamType;
(function (ParamType) {
ParamType[ParamType["Srv"] = 0] = "Srv";
ParamType[ParamType["Req"] = 1] = "Req";
ParamType[ParamType["Data"] = 2] = "Data";
ParamType[ParamType["ParamObj"] = 3] = "ParamObj";
ParamType[ParamType["Param"] = 4] = "Param";
ParamType[ParamType["Jwt"] = 5] = "Jwt";
ParamType[ParamType["Entities"] = 6] = "Entities";
ParamType[ParamType["Next"] = 7] = "Next";
ParamType[ParamType["Locale"] = 8] = "Locale";
ParamType[ParamType["User"] = 9] = "User";
})(ParamType = exports.ParamType || (exports.ParamType = {}));
//# sourceMappingURL=ParamType.js.map