This commit is contained in:
root
2026-06-28 23:48:13 +00:00
parent 4c2ce929d9
commit 9e215baa11
9538 changed files with 3146 additions and 239 deletions
@@ -0,0 +1,27 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore: Unused imports
import { Create as $Create } from "@wailsio/runtime";
/**
* Updater is the singleton exposed as app.Updater. It is constructed during
* application initialisation but does nothing useful until Init is called.
*/
export class Updater {
/** Creates a new Updater instance. */
constructor($$source: Partial<Updater> = {}) {
Object.assign(this, $$source);
}
/**
* Creates a new Updater instance from a string or object.
*/
static createFrom($$source: any = {}): Updater {
let $$parsedSource = typeof $$source === 'string' ? JSON.parse($$source) : $$source;
return new Updater($$parsedSource as Partial<Updater>);
}
}