HttpMethod.js 339 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.HttpMethod = void 0;
  4. var HttpMethod;
  5. (function (HttpMethod) {
  6. HttpMethod[HttpMethod["GET"] = 0] = "GET";
  7. HttpMethod[HttpMethod["POST"] = 1] = "POST";
  8. })(HttpMethod || (exports.HttpMethod = HttpMethod = {}));
  9. //# sourceMappingURL=HttpMethod.js.map