Files

18 lines
500 B
TypeScript
Raw Permalink Normal View History

2023-12-23 08:49:58 +11:00
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
2024-01-07 20:11:34 +11:00
import {Call} from '@wailsio/runtime';
2023-12-23 08:49:58 +11:00
import {Person} from './models';
import {Title} from './models';
// Greet does XYZ
export async function Greet(name: string, title: Title) : Promise<string> {
2024-01-07 20:11:34 +11:00
return Call.ByID(1411160069, name, title);
2023-12-23 08:49:58 +11:00
}
// NewPerson creates a new person
export async function NewPerson(name: string) : Promise<Person> {
2024-01-07 20:11:34 +11:00
return Call.ByID(1661412647, name);
2023-12-23 08:49:58 +11:00
}