"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var HttpMethod;
(function (HttpMethod) {
HttpMethod["POST"] = "POST";
HttpMethod["GET"] = "GET";
HttpMethod["PUT"] = "PUT";
HttpMethod["DELETE"] = "DELETE";
})(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));