@glandjs/http
Version:
A protocol adapter for HTTP built on top of the Gland architecture solution.
23 lines (22 loc) • 833 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RequestMethod = void 0;
var RequestMethod;
(function (RequestMethod) {
RequestMethod["GET"] = "GET";
RequestMethod["POST"] = "POST";
RequestMethod["PUT"] = "PUT";
RequestMethod["DELETE"] = "DELETE";
RequestMethod["PATCH"] = "PATCH";
RequestMethod["ALL"] = "ALL";
RequestMethod["OPTIONS"] = "OPTIONS";
RequestMethod["HEAD"] = "HEAD";
RequestMethod["SEARCH"] = "SEARCH";
RequestMethod["PROPFIND"] = "PROPFIND";
RequestMethod["PROPPATCH"] = "PROPPATCH";
RequestMethod["MKCOL"] = "MKCOL";
RequestMethod["COPY"] = "COPY";
RequestMethod["MOVE"] = "MOVE";
RequestMethod["LOCK"] = "LOCK";
RequestMethod["UNLOCK"] = "UNLOCK";
})(RequestMethod || (exports.RequestMethod = RequestMethod = {}));