This commit is contained in:
2026-06-07 11:00:25 +02:00
parent 8040a37315
commit d0526c39f5
4 changed files with 115 additions and 7 deletions
+4
View File
@@ -1286,6 +1286,8 @@ export namespace main {
enabled: boolean;
host: string;
port: number;
follow: boolean;
step_khz: number;
static createFrom(source: any = {}) {
return new UltrabeamSettings(source);
@@ -1296,6 +1298,8 @@ export namespace main {
this.enabled = source["enabled"];
this.host = source["host"];
this.port = source["port"];
this.follow = source["follow"];
this.step_khz = source["step_khz"];
}
}
export class UltrabeamStatusInfo {