node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
14 lines (13 loc) • 515 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntityFilterType = exports.OutputType = void 0;
var OutputType;
(function (OutputType) {
OutputType["Array"] = "array";
OutputType["Split"] = "split";
})(OutputType || (exports.OutputType = OutputType = {}));
var EntityFilterType;
(function (EntityFilterType) {
EntityFilterType["Equals"] = "equals";
EntityFilterType["Regex"] = "regex";
})(EntityFilterType || (exports.EntityFilterType = EntityFilterType = {}));
;