16 lines
519 B
JavaScript
16 lines
519 B
JavaScript
'use strict';
|
|
|
|
var ExecutionMethod = /* @__PURE__ */ ((ExecutionMethod2) => {
|
|
ExecutionMethod2["GET"] = "GET";
|
|
ExecutionMethod2["POST"] = "POST";
|
|
ExecutionMethod2["PUT"] = "PUT";
|
|
ExecutionMethod2["PATCH"] = "PATCH";
|
|
ExecutionMethod2["DELETE"] = "DELETE";
|
|
ExecutionMethod2["OPTIONS"] = "OPTIONS";
|
|
ExecutionMethod2["HEAD"] = "HEAD";
|
|
return ExecutionMethod2;
|
|
})(ExecutionMethod || {});
|
|
|
|
exports.ExecutionMethod = ExecutionMethod;
|
|
//# sourceMappingURL=out.js.map
|
|
//# sourceMappingURL=execution-method.js.map
|