tsbase
Version:
Base class libraries for TypeScript
15 lines • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpMethod = void 0;
/**
* Enumerates supported http methods
*/
var HttpMethod;
(function (HttpMethod) {
HttpMethod["Get"] = "GET";
HttpMethod["Post"] = "POST";
HttpMethod["Patch"] = "PATCH";
HttpMethod["Put"] = "PUT";
HttpMethod["Delete"] = "DELETE";
})(HttpMethod || (exports.HttpMethod = HttpMethod = {}));
//# sourceMappingURL=HttpMethod.js.map