mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-10 05:02:36 +08:00
28 lines
734 B
JavaScript
28 lines
734 B
JavaScript
// @ts-check
|
|
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
|
// This file is automatically generated. DO NOT EDIT
|
|
|
|
/**
|
|
* @typedef {import('./models').main.Person} mainPerson
|
|
*/
|
|
|
|
export const GreetService = {
|
|
|
|
/**
|
|
* GreetService.Greet
|
|
* Greet greets a person
|
|
* @param name {string}
|
|
* @returns {Promise<string>}
|
|
**/
|
|
Greet: function(name) { return wails.CallByID(1411160069, ...Array.prototype.slice.call(arguments, 0)); },
|
|
|
|
/**
|
|
* GreetService.GreetPerson
|
|
* GreetPerson greets a person
|
|
* @param person {mainPerson}
|
|
* @returns {Promise<string>}
|
|
**/
|
|
GreetPerson: function(person) { return wails.CallByID(4021313248, ...Array.prototype.slice.call(arguments, 0)); },
|
|
};
|
|
|