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