@icoms-detection/server-esp32
Version:
This is the OFFICIAL SERVER library created by Icoms Detection to run their apps.
13 lines • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpMethods = void 0;
/**
* Allowed http methods
*/
var HttpMethods;
(function (HttpMethods) {
HttpMethods["GET"] = "GET";
HttpMethods["POST"] = "POST";
HttpMethods["DELETE"] = "DELETE";
})(HttpMethods = exports.HttpMethods || (exports.HttpMethods = {}));
//# sourceMappingURL=types.js.map