UNPKG

node-web-mvc

Version:
18 lines (17 loc) 489 B
"use strict"; /** * @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;