Code cleanup. Added comments.

This commit is contained in:
watsonb8
2019-06-17 15:59:15 -04:00
parent 5040435760
commit 8bb65b5b3c
7 changed files with 86 additions and 32 deletions

View File

@ -4,6 +4,9 @@ export interface IDeviceSetupItemProps {
input: string
}
/**
* Data model to hold device setup items.
*/
export class DeviceSetupItem {
private _deviceId: string = "";
private _input: string = "";

View File

@ -14,6 +14,9 @@ export interface Output {
outputDevice: string,
}
/**
* Data model to hold matrix information.
*/
export class Matrix {
private _inputs: Array<Input> = [];
private _outputs: Array<Output> = [];