@zegl/homebridge-z2m
Version:
Expose your Zigbee devices to HomeKit with ease, by integrating Zigbee2MQTT with Homebridge.
15 lines • 657 B
TypeScript
import { BasicAccessory, ServiceCreator, ConverterConfigurationRegistry } from './interfaces';
import { ExposesEntry } from '../z2mModels';
interface LightConfig {
adaptive_lighting?: boolean;
}
export declare const isLightConfig: (x: any) => x is LightConfig;
export declare class LightCreator implements ServiceCreator {
static readonly CONFIG_TAG = "light";
constructor(converterConfigRegistry: ConverterConfigurationRegistry);
createServicesFromExposes(accessory: BasicAccessory, exposes: ExposesEntry[]): void;
private createService;
private static isValidConverterConfiguration;
}
export {};
//# sourceMappingURL=light.d.ts.map