homebridge-connect-my-pool-home-automation
Version:
HomeKit integration for Astral Viron Gateway via Home Automation
14 lines • 608 B
TypeScript
import { Categories } from 'homebridge';
import { HeaterConfig } from '../config';
import { IDevice, ConfigTypes } from './iDevice';
export declare class HeaterDevice implements IDevice {
readonly deviceName: string;
readonly deviceType: string;
readonly deviceTypeNumber: number;
readonly category: Categories | undefined;
readonly data: ConfigTypes;
readonly hasPoolSpaSelectionEnabled: boolean;
static readonly type = "Heater";
constructor(config: HeaterConfig, count: number, hasPoolSpaSelectionEnabled?: boolean);
}
//# sourceMappingURL=heaterDevice.d.ts.map