shellies-ds9
Version:
Handles communication with the next generation of Shelly devices
27 lines • 1.28 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutboundWebSocket = void 0;
const base_1 = require("./base");
/**
* Makes it possible to configure a device to establish and maintain an outbound WebSocket connection.
*/
class OutboundWebSocket extends base_1.Component {
constructor(device) {
super('Ws', device);
/**
* Whether an outbound WebSocket connection is established.
*/
this.connected = false;
}
}
__decorate([
base_1.characteristic
], OutboundWebSocket.prototype, "connected", void 0);
exports.OutboundWebSocket = OutboundWebSocket;
//# sourceMappingURL=outbound-websocket.js.map