tit
Version:
A simple api framework by use TypeScript & Node.js
12 lines • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpMethod = void 0;
var HttpMethod;
(function (HttpMethod) {
HttpMethod["GET"] = "get";
HttpMethod["PUT"] = "put";
HttpMethod["DEL"] = "delete";
HttpMethod["POST"] = "post";
HttpMethod["PATCH"] = "patch";
})(HttpMethod || (exports.HttpMethod = HttpMethod = {}));
//# sourceMappingURL=enumerate.js.map