@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
13 lines • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModelProductQuery = void 0;
const common_1 = require("@nestjs/common");
class ModelProductQuery {
constructor(device) {
this.device = device;
this.label = () => `Product Info For ${this.device.model}`;
this.logger = new common_1.Logger(ModelProductQuery.name);
}
}
exports.ModelProductQuery = ModelProductQuery;
//# sourceMappingURL=model-product.query.js.map