pluto-http-client
Version:
HTTP client for NodeJS. Inspired in the Java JAX-RS spec so you can expect excellence, versatility and extensibility.
14 lines (13 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Method = void 0;
var Method;
(function (Method) {
Method["GET"] = "GET";
Method["POST"] = "POST";
Method["DELETE"] = "DELETE";
Method["HEAD"] = "HEAD";
Method["PUT"] = "PUT";
Method["PATCH"] = "PATCH";
Method["OPTIONS"] = "OPTIONS";
})(Method = exports.Method || (exports.Method = {}));