feat(upc): avatar & brand components

This commit is contained in:
Zack Spear
2023-06-01 00:11:26 -07:00
committed by Zack Spear
parent 734d47c5f6
commit 61c6df51d2
14 changed files with 368 additions and 23 deletions
+2
View File
@@ -20,6 +20,7 @@ export enum ServerState {
ENOCONN = 'ENOCONN',
}
export interface Server {
avatar?: string;
description?: string;
deviceCount?: number;
expireTime?: number;
@@ -39,6 +40,7 @@ export interface Server {
// state?: ServerState;
state: string;
uptime?: number;
username?: string;
wanFQDN?: string;
}