react-http-fetch
Version:
An http library for React JS built on top of native JS fetch
13 lines (12 loc) • 417 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpMethod = void 0;
var HttpMethod;
(function (HttpMethod) {
HttpMethod["Get"] = "GET";
HttpMethod["Post"] = "POST";
HttpMethod["Put"] = "PUT";
HttpMethod["Patch"] = "PATCH";
HttpMethod["Delete"] = "DELETE";
HttpMethod["Option"] = "OPTION";
})(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));