nralcm
Version:
This is a framework based on NodeJs to manage rest api request lifecycle
13 lines (12 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Enum for Rest Verbs
*/
var HttpMethod;
(function (HttpMethod) {
HttpMethod["GET"] = "GET";
HttpMethod["POST"] = "POST";
HttpMethod["PUT"] = "PUT";
HttpMethod["DELETE"] = "DELETE";
})(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));