habits-cli
Version:
The habits application seeks to help individuals build up healthy habits.
13 lines (12 loc) • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RequestMethod = void 0;
var RequestMethod;
(function (RequestMethod) {
RequestMethod["GET"] = "get";
RequestMethod["POST"] = "post";
RequestMethod["PATCH"] = "patch";
RequestMethod["PUT"] = "put";
RequestMethod["DELETE"] = "delete";
RequestMethod["OPTIONS"] = "options";
})(RequestMethod = exports.RequestMethod || (exports.RequestMethod = {}));