homebridge-connect-my-pool-home-automation
Version:
HomeKit integration for Astral Viron Gateway via Home Automation
13 lines • 544 B
TypeScript
import { Categories } from 'homebridge';
import { LightingZoneConfig } from '../config';
import { IDevice, ConfigTypes } from './iDevice';
export declare class LightingZoneDevice implements IDevice {
readonly deviceName: string;
readonly deviceType: string;
readonly deviceTypeNumber: number;
readonly category: Categories | undefined;
readonly data: ConfigTypes;
static readonly type = "Lighting";
constructor(config: LightingZoneConfig, name: string);
}
//# sourceMappingURL=lightingZoneDevice.d.ts.map