From 2425e3dc2af22c3281122715d60bd4506d48938a Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Mon, 13 Jan 2025 00:40:01 +0530 Subject: Initial application --- frontend/wailsjs/go/main/App.d.ts | 10 ++++++++++ frontend/wailsjs/go/main/App.js | 19 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100755 frontend/wailsjs/go/main/App.d.ts create mode 100755 frontend/wailsjs/go/main/App.js (limited to 'frontend/wailsjs/go') diff --git a/frontend/wailsjs/go/main/App.d.ts b/frontend/wailsjs/go/main/App.d.ts new file mode 100755 index 0000000..e57376b --- /dev/null +++ b/frontend/wailsjs/go/main/App.d.ts @@ -0,0 +1,10 @@ +// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL +// This file is automatically generated. DO NOT EDIT + +export function ExportGrid(arg1:string,arg2:Array):Promise; + +export function GenerateHexCommand(arg1:Array):Promise; + +export function ParseCSV(arg1:string):Promise>; + +export function SendPattern(arg1:Array):Promise; diff --git a/frontend/wailsjs/go/main/App.js b/frontend/wailsjs/go/main/App.js new file mode 100755 index 0000000..cac3afa --- /dev/null +++ b/frontend/wailsjs/go/main/App.js @@ -0,0 +1,19 @@ +// @ts-check +// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL +// This file is automatically generated. DO NOT EDIT + +export function ExportGrid(arg1, arg2) { + return window['go']['main']['App']['ExportGrid'](arg1, arg2); +} + +export function GenerateHexCommand(arg1) { + return window['go']['main']['App']['GenerateHexCommand'](arg1); +} + +export function ParseCSV(arg1) { + return window['go']['main']['App']['ParseCSV'](arg1); +} + +export function SendPattern(arg1) { + return window['go']['main']['App']['SendPattern'](arg1); +} -- cgit