@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
14 lines • 475 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IoTPublishCommand = void 0;
class IoTPublishCommand {
constructor(commandId, topic, payload, debug) {
this.commandId = commandId;
this.topic = topic;
this.payload = payload;
this.debug = debug;
this.label = () => `Publishing to ${this.topic}`;
}
}
exports.IoTPublishCommand = IoTPublishCommand;
//# sourceMappingURL=iot-publish.command.js.map