homebridge-philips-hue-sync-box
Version:
Homebridge plugin for the Philips Hue Sync Box.
13 lines • 733 B
TypeScript
import { SyncBoxDevice } from './base.js';
import type { PlatformAccessory } from 'homebridge';
import { State } from '../state';
import { HueSyncBoxPlatform } from '../platform';
export declare class LightbulbDevice extends SyncBoxDevice {
protected readonly platform: HueSyncBoxPlatform;
readonly accessory: PlatformAccessory;
protected state: State;
constructor(platform: HueSyncBoxPlatform, accessory: PlatformAccessory, state: State);
protected getPowerCharacteristic(): typeof import("hap-nodejs/dist/lib/definitions/CharacteristicDefinitions.js").On;
protected getServiceType(): typeof import("hap-nodejs/dist/lib/definitions/ServiceDefinitions.js").Lightbulb;
}
//# sourceMappingURL=lightbulb.d.ts.map