chore: update wails bindings

This commit is contained in:
Mikhail Kiselev
2026-02-10 15:54:54 +03:00
parent 2b86eb9d20
commit 9f5c9d568d

View File

@@ -441,6 +441,7 @@ export namespace updater {
releaseNotes: string; releaseNotes: string;
downloadURL: string; downloadURL: string;
downloadSize: number; downloadSize: number;
isRebuild: boolean;
static createFrom(source: any = {}) { static createFrom(source: any = {}) {
return new UpdateInfo(source); return new UpdateInfo(source);
@@ -454,6 +455,7 @@ export namespace updater {
this.releaseNotes = source["releaseNotes"]; this.releaseNotes = source["releaseNotes"];
this.downloadURL = source["downloadURL"]; this.downloadURL = source["downloadURL"];
this.downloadSize = source["downloadSize"]; this.downloadSize = source["downloadSize"];
this.isRebuild = source["isRebuild"];
} }
} }