node-web-mvc
Version:
node spring mvc
18 lines (17 loc) • 489 B
JavaScript
;
/**
* @module HttpMethod
* @description 请求谓词枚举
*/
Object.defineProperty(exports, "__esModule", { value: true });
var HttpMethod;
(function (HttpMethod) {
HttpMethod["GET"] = "GET";
HttpMethod["POST"] = "POST";
HttpMethod["PUT"] = "PUT";
HttpMethod["DELETE"] = "DELETE";
HttpMethod["PATCH"] = "PATCH";
HttpMethod["HEAD"] = "HEAD";
HttpMethod["OPTIONS"] = "OPTIONS";
})(HttpMethod || (HttpMethod = {}));
exports.default = HttpMethod;