@easy-koa/shared
Version:
23 lines • 824 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var classTypes;
(function (classTypes) {
classTypes["controller"] = "controller";
classTypes["service"] = "service";
classTypes["interceptor"] = "interceptor";
})(classTypes = exports.classTypes || (exports.classTypes = {}));
exports.classType = 'type';
exports.pathMeta = 'path';
exports.methodsMeta = 'methods';
exports.moduleMeta = 'module';
var methodTypes;
(function (methodTypes) {
methodTypes["GET"] = "GET";
methodTypes["POST"] = "POST";
})(methodTypes = exports.methodTypes || (exports.methodTypes = {}));
var registry;
(function (registry) {
registry["service"] = "service";
registry["component"] = "component";
})(registry = exports.registry || (exports.registry = {}));
//# sourceMappingURL=constants.js.map