@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
15 lines • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeviceStateCommandEvent = void 0;
class DeviceStateCommandEvent {
constructor(id, stateName, command, addresses, debug) {
this.id = id;
this.stateName = stateName;
this.command = command;
this.addresses = addresses;
this.debug = debug;
this.label = () => `State ${this.stateName}`;
}
}
exports.DeviceStateCommandEvent = DeviceStateCommandEvent;
//# sourceMappingURL=device-state-command.event.js.map