Added device emit option for debugging purposes
This commit is contained in:
15
src/Models/Config/IMatrix.ts
Normal file
15
src/Models/Config/IMatrix.ts
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user