Files
office-data-matcher/frontend/wailsjs/go/main/App.js
RainySY 2cef098632 feat: Initialize data-matcher project with Wails framework
- Added frontend runtime JavaScript functions for logging, window management, and notifications.
- Created Go module with dependencies for Wails and Excel processing.
- Implemented main application entry point with embedded frontend assets.
- Configured Wails application settings in wails.json.

Co-authored-by: Copilot <copilot@github.com>
2026-05-07 01:11:05 +08:00

56 lines
1.4 KiB
JavaScript

// @ts-check
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function CalculateSimilarity(arg1, arg2) {
return window['go']['main']['App']['CalculateSimilarity'](arg1, arg2);
}
export function CleanString(arg1) {
return window['go']['main']['App']['CleanString'](arg1);
}
export function DeepseekEnhanceMatching(arg1, arg2) {
return window['go']['main']['App']['DeepseekEnhanceMatching'](arg1, arg2);
}
export function ExportResults(arg1) {
return window['go']['main']['App']['ExportResults'](arg1);
}
export function GetDeepseekStatus() {
return window['go']['main']['App']['GetDeepseekStatus']();
}
export function OpenDailyReport() {
return window['go']['main']['App']['OpenDailyReport']();
}
export function OpenFileA() {
return window['go']['main']['App']['OpenFileA']();
}
export function OpenFileB() {
return window['go']['main']['App']['OpenFileB']();
}
export function OpenMonthlyReport() {
return window['go']['main']['App']['OpenMonthlyReport']();
}
export function ParseHeaders(arg1) {
return window['go']['main']['App']['ParseHeaders'](arg1);
}
export function RunMatch(arg1) {
return window['go']['main']['App']['RunMatch'](arg1);
}
export function SetDeepseekAPIKey(arg1) {
return window['go']['main']['App']['SetDeepseekAPIKey'](arg1);
}
export function StartMatching(arg1, arg2) {
return window['go']['main']['App']['StartMatching'](arg1, arg2);
}