Add description to device types to improve clarity

This commit is contained in:
swevictor 2022-10-16 14:40:15 +02:00
parent d9d4f9bac8
commit a03f2556d6
2 changed files with 14 additions and 7 deletions

View file

@ -13,6 +13,7 @@ export interface OutputDevice {
roomName: string | undefined;
state: boolean | undefined;
type: string;
typeDescription: string;
typeName: string;
version: string;
uniqueId: string;
@ -27,6 +28,7 @@ export interface InputDevice {
input: number;
roomId: string;
type: string;
typeDescription: string;
typeName: string;
version: string;
uniqueId: string;