- Created package.json for Wails JavaScript runtime library. - Added TypeScript definitions for runtime functions. - Implemented runtime.js with event handling and logging functions. - Initialized Go module with dependencies for Wails and other libraries. - Added main.go for application entry point and asset embedding. - Configured wails.json for application settings and build commands.
16 lines
398 B
JavaScript
Executable File
16 lines
398 B
JavaScript
Executable File
// @ts-check
|
|
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
|
// This file is automatically generated. DO NOT EDIT
|
|
|
|
export function GetMetrics() {
|
|
return window['go']['main']['App']['GetMetrics']();
|
|
}
|
|
|
|
export function Greet(arg1) {
|
|
return window['go']['main']['App']['Greet'](arg1);
|
|
}
|
|
|
|
export function InitBackend(arg1) {
|
|
return window['go']['main']['App']['InitBackend'](arg1);
|
|
}
|