Brandon Watson 506c170746
All checks were successful
continuous-integration/drone/push Build is passing
Renaming files
2021-12-28 18:14:23 -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;
}