generated from schreifuchs/wails-template
added matches
This commit is contained in:
4
frontend/wailsjs/go/main/App.d.ts
vendored
4
frontend/wailsjs/go/main/App.d.ts
vendored
@ -2,6 +2,8 @@
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
import {model} from '../models';
|
||||
|
||||
export function CreateStage(arg1:number):Promise<void>;
|
||||
|
||||
export function DeleteParticipat(arg1:model.Participant):Promise<void>;
|
||||
|
||||
export function ExportTournament(arg1:model.Tournament):Promise<void>;
|
||||
@ -20,6 +22,8 @@ export function GetTournaments():Promise<Array<model.Tournament>>;
|
||||
|
||||
export function RemoveParticipantFromTournament(arg1:model.Participant,arg2:model.Tournament):Promise<void>;
|
||||
|
||||
export function SaveMatch(arg1:model.Match):Promise<void>;
|
||||
|
||||
export function SaveParticipant(arg1:model.Participant):Promise<void>;
|
||||
|
||||
export function SaveTournament(arg1:model.Tournament):Promise<void>;
|
||||
|
@ -2,6 +2,10 @@
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
|
||||
export function CreateStage(arg1) {
|
||||
return window['go']['main']['App']['CreateStage'](arg1);
|
||||
}
|
||||
|
||||
export function DeleteParticipat(arg1) {
|
||||
return window['go']['main']['App']['DeleteParticipat'](arg1);
|
||||
}
|
||||
@ -38,6 +42,10 @@ export function RemoveParticipantFromTournament(arg1, arg2) {
|
||||
return window['go']['main']['App']['RemoveParticipantFromTournament'](arg1, arg2);
|
||||
}
|
||||
|
||||
export function SaveMatch(arg1) {
|
||||
return window['go']['main']['App']['SaveMatch'](arg1);
|
||||
}
|
||||
|
||||
export function SaveParticipant(arg1) {
|
||||
return window['go']['main']['App']['SaveParticipant'](arg1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user