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

@@ -53,6 +53,8 @@ export function RestartApp():Promise<void>;
export function ResumeMeeting():Promise<void>;
export function SaveWindowPosition():Promise<void>;
export function SelectCustomSound(arg1:string):Promise<string>;
export function SkipSpeaker():Promise<void>;

View File

@@ -102,6 +102,10 @@ export function ResumeMeeting() {
return window['go']['app']['App']['ResumeMeeting']();
}
export function SaveWindowPosition() {
return window['go']['app']['App']['SaveWindowPosition']();
}
export function SelectCustomSound(arg1) {
return window['go']['app']['App']['SelectCustomSound'](arg1);
}

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 {