protontype
Version:
A simple REST framework make in TypeScript
16 lines • 544 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @author Humberto Machado
*/
var Method;
(function (Method) {
Method[Method["GET"] = 0] = "GET";
Method[Method["PUT"] = 1] = "PUT";
Method[Method["POST"] = 2] = "POST";
Method[Method["DELETE"] = 3] = "DELETE";
Method[Method["PATCH"] = 4] = "PATCH";
Method[Method["OPTIONS"] = 5] = "OPTIONS";
Method[Method["HEAD"] = 6] = "HEAD";
})(Method = exports.Method || (exports.Method = {}));
//# sourceMappingURL=Method.js.map