build: Add build process for newgui (#7351)

This commit is contained in:
Jakob Borg
2021-02-15 14:52:28 +01:00
parent d117b4b570
commit b2c9e7b07b
123 changed files with 38050 additions and 17178 deletions
+16
View File
@@ -0,0 +1,16 @@
export interface SystemConnections {
connections: { deviceId?: Connection };
total: Connection;
}
export interface Connection {
address: string;
at: string;
clientVersion: string;
connected: boolean;
crypto: string;
inBytesTotal: number;
outBytesTotal: number;
paused: boolean;
type: string;
}