UNPKG

428 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.HttpVerb = void 0;
4var HttpVerb;
5(function (HttpVerb) {
6 HttpVerb[HttpVerb["GET"] = 1] = "GET";
7 HttpVerb[HttpVerb["POST"] = 2] = "POST";
8 HttpVerb[HttpVerb["PUT"] = 3] = "PUT";
9 HttpVerb[HttpVerb["DELETE"] = 4] = "DELETE";
10 HttpVerb[HttpVerb["PATCH"] = 5] = "PATCH";
11})(HttpVerb = exports.HttpVerb || (exports.HttpVerb = {}));