This repository has been archived on 2025-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
boilerplate/frontend/bindings/app/internal/services/greetservice.ts
2025-01-03 00:05:10 +07:00

17 lines
501 B
TypeScript

// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
/**
* TODO: implement service and migrator
* @module
*/
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore: Unused imports
import {Call as $Call, Create as $Create} from "@wailsio/runtime";
export function Greet(name: string): Promise<string> & { cancel(): void } {
let $resultPromise = $Call.ByID(4216357642, name) as any;
return $resultPromise;
}