chore: update wails bindings
This commit is contained in:
2
frontend/wailsjs/go/app/App.d.ts
vendored
2
frontend/wailsjs/go/app/App.d.ts
vendored
@@ -53,6 +53,8 @@ export function RestartApp():Promise<void>;
|
|||||||
|
|
||||||
export function ResumeMeeting():Promise<void>;
|
export function ResumeMeeting():Promise<void>;
|
||||||
|
|
||||||
|
export function SaveWindowPosition():Promise<void>;
|
||||||
|
|
||||||
export function SelectCustomSound(arg1:string):Promise<string>;
|
export function SelectCustomSound(arg1:string):Promise<string>;
|
||||||
|
|
||||||
export function SkipSpeaker():Promise<void>;
|
export function SkipSpeaker():Promise<void>;
|
||||||
|
|||||||
@@ -102,6 +102,10 @@ export function ResumeMeeting() {
|
|||||||
return window['go']['app']['App']['ResumeMeeting']();
|
return window['go']['app']['App']['ResumeMeeting']();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function SaveWindowPosition() {
|
||||||
|
return window['go']['app']['App']['SaveWindowPosition']();
|
||||||
|
}
|
||||||
|
|
||||||
export function SelectCustomSound(arg1) {
|
export function SelectCustomSound(arg1) {
|
||||||
return window['go']['app']['App']['SelectCustomSound'](arg1);
|
return window['go']['app']['App']['SelectCustomSound'](arg1);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -327,6 +327,8 @@ export namespace models {
|
|||||||
theme: string;
|
theme: string;
|
||||||
windowWidth: number;
|
windowWidth: number;
|
||||||
windowFullHeight: boolean;
|
windowFullHeight: boolean;
|
||||||
|
windowX: number;
|
||||||
|
windowY: number;
|
||||||
|
|
||||||
static createFrom(source: any = {}) {
|
static createFrom(source: any = {}) {
|
||||||
return new Settings(source);
|
return new Settings(source);
|
||||||
@@ -345,6 +347,8 @@ export namespace models {
|
|||||||
this.theme = source["theme"];
|
this.theme = source["theme"];
|
||||||
this.windowWidth = source["windowWidth"];
|
this.windowWidth = source["windowWidth"];
|
||||||
this.windowFullHeight = source["windowFullHeight"];
|
this.windowFullHeight = source["windowFullHeight"];
|
||||||
|
this.windowX = source["windowX"];
|
||||||
|
this.windowY = source["windowY"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export class SpeakerInfo {
|
export class SpeakerInfo {
|
||||||
|
|||||||
Reference in New Issue
Block a user