zigbee-herdsman-zigate
Version:
An open source ZigBee gateway solution with node.js.
19 lines • 867 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommonAxis = exports.CommonReedSwitchState = exports.CommonSwitchState = void 0;
var CommonSwitchState;
(function (CommonSwitchState) {
CommonSwitchState["Off"] = "off";
CommonSwitchState["On"] = "on";
})(CommonSwitchState = exports.CommonSwitchState || (exports.CommonSwitchState = {}));
var CommonReedSwitchState;
(function (CommonReedSwitchState) {
CommonReedSwitchState["Closed"] = "closed";
CommonReedSwitchState["Opened"] = "opened";
})(CommonReedSwitchState = exports.CommonReedSwitchState || (exports.CommonReedSwitchState = {}));
var CommonAxis;
(function (CommonAxis) {
CommonAxis["Horizontal"] = "horizontal";
CommonAxis["Vertical"] = "vertical";
})(CommonAxis = exports.CommonAxis || (exports.CommonAxis = {}));
//# sourceMappingURL=common.js.map