chore: regenerate Wails bindings for GetQSORate / QSORate

This commit is contained in:
2026-07-18 21:53:44 +02:00
parent 9d4ccb9254
commit 14c87f7fa9
3 changed files with 20 additions and 0 deletions
+14
View File
@@ -2329,6 +2329,20 @@ export namespace main {
this.pickable = source["pickable"];
}
}
export class QSORate {
last10: number;
last60: number;
static createFrom(source: any = {}) {
return new QSORate(source);
}
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.last10 = source["last10"];
this.last60 = source["last60"];
}
}
export class RotatorHeading {
enabled: boolean;
ok: boolean;