123456789 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.HttpMethod = void 0;
- var HttpMethod;
- (function (HttpMethod) {
- HttpMethod[HttpMethod["GET"] = 0] = "GET";
- HttpMethod[HttpMethod["POST"] = 1] = "POST";
- })(HttpMethod || (exports.HttpMethod = HttpMethod = {}));
- //# sourceMappingURL=HttpMethod.js.map
|