node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
14 lines (13 loc) • 575 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SentenceResponseType = exports.SentenceMode = void 0;
var SentenceMode;
(function (SentenceMode) {
SentenceMode["Trigger"] = "trigger";
SentenceMode["Response"] = "response";
})(SentenceMode || (exports.SentenceMode = SentenceMode = {}));
var SentenceResponseType;
(function (SentenceResponseType) {
SentenceResponseType["Dynamic"] = "dynamic";
SentenceResponseType["Fixed"] = "fixed";
})(SentenceResponseType || (exports.SentenceResponseType = SentenceResponseType = {}));
;