@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
13 lines • 686 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectionState = void 0;
var ConnectionState;
(function (ConnectionState) {
ConnectionState[ConnectionState["Disconnected"] = 0] = "Disconnected";
ConnectionState[ConnectionState["Connecting"] = 1] = "Connecting";
ConnectionState[ConnectionState["Connected"] = 2] = "Connected";
ConnectionState[ConnectionState["Error"] = 3] = "Error";
ConnectionState[ConnectionState["Interrupted"] = 4] = "Interrupted";
ConnectionState[ConnectionState["Closed"] = 5] = "Closed";
})(ConnectionState || (exports.ConnectionState = ConnectionState = {}));
//# sourceMappingURL=iot.handler.js.map