- added websocket context to connect to websockets if needed

This commit is contained in:
2025-12-15 16:07:30 +00:00
parent cae652477e
commit 555330991d
10 changed files with 510 additions and 62 deletions

View File

@@ -367,7 +367,7 @@ export type SoundAction = UpdateAction | AddAction | VolumeAction | UploadedStat
export type WifiSettingValues = {
ssid: string;
password: string;
encryption: string;
encryption?: string;
};
export type ModemConfigPayload = {
property: string;
@@ -458,3 +458,10 @@ export type versionInfo = {
"Serial No.": string;
"Model No.": string;
};
export type InfoBarData = {
"system-clock-utc": string;
"system-clock-local": string;
"memory-cpu-status": string;
"thread-count": string;
};