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