before svelte upgrade

This commit is contained in:
2025-02-07 13:33:43 +01:00
parent 57cf5e617a
commit 0501c11c49
17 changed files with 396 additions and 88 deletions

View File

@ -1,4 +1,11 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {model} from '../models';
export function Greet(arg1:string):Promise<string>;
export function GetGames():Promise<Array<model.Game>>;
export function GetTournament(arg1:number):Promise<model.Tournament>;
export function GetTournaments():Promise<Array<model.Tournament>>;
export function SaveTournament(arg1:model.Tournament):Promise<void>;

View File

@ -2,6 +2,18 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function Greet(arg1) {
return window['go']['main']['App']['Greet'](arg1);
export function GetGames() {
return window['go']['main']['App']['GetGames']();
}
export function GetTournament(arg1) {
return window['go']['main']['App']['GetTournament'](arg1);
}
export function GetTournaments() {
return window['go']['main']['App']['GetTournaments']();
}
export function SaveTournament(arg1) {
return window['go']['main']['App']['SaveTournament'](arg1);
}