generated from schreifuchs/wails-template
before svelte upgrade
This commit is contained in:
9
frontend/wailsjs/go/main/App.d.ts
vendored
9
frontend/wailsjs/go/main/App.d.ts
vendored
@ -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>;
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user