Files
homebridge-harmony-control/src/Models/Config/IMatrix.ts
2020-01-01 23:29:44 -05:00

15 lines
269 B
TypeScript

export interface IInput {
InputNumber: string,
InputDevice: string,
}
export interface IOutput {
OutputLetter: string,
OutputDevice: string,
}
export interface IMatrix {
Inputs: Array<IInput>;
Outputs: Array<IOutput>;
DeviceName: string;
}