react-simple-api
Version:
Create and cache API requests and responses
12 lines • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.APIMethod = void 0;
var APIMethod;
(function (APIMethod) {
APIMethod["GET"] = "GET";
APIMethod["POST"] = "POST";
APIMethod["PUT"] = "PUT";
APIMethod["PATCH"] = "PATCH";
APIMethod["DELETE"] = "DELETE";
})(APIMethod || (exports.APIMethod = APIMethod = {}));
//# sourceMappingURL=types.js.map