import { AccessoryConfig, PlatformConfig } from 'homebridge'; export interface HDMIConfig extends AccessoryConfig { manufacturer?: string; name: string; id?: string; path: string; baudRate?: number; zeroIndexed?: boolean; powerOnCommand?: string; powerOffCommand?: string; outputSelectCommand?: string; commandEnd?: string; inputs?: number; labels?: string[]; } export interface HDMIPlatformConfig extends PlatformConfig { devices: HDMIConfig[]; } //# sourceMappingURL=HDMIConfig.d.ts.map