chore: update wails bindings

This commit is contained in:
Mikhail Kiselev
2026-02-10 23:39:02 +03:00
parent 41c3fd4934
commit 422ff362c3
3 changed files with 10 additions and 0 deletions

View File

@@ -327,6 +327,8 @@ export namespace models {
theme: string;
windowWidth: number;
windowFullHeight: boolean;
windowX: number;
windowY: number;
static createFrom(source: any = {}) {
return new Settings(source);
@@ -345,6 +347,8 @@ export namespace models {
this.theme = source["theme"];
this.windowWidth = source["windowWidth"];
this.windowFullHeight = source["windowFullHeight"];
this.windowX = source["windowX"];
this.windowY = source["windowY"];
}
}
export class SpeakerInfo {