feat: 解析多表头excel

This commit is contained in:
Blizzard
2026-04-28 10:47:31 +08:00
parent 473f9226d3
commit 488026dffe
32 changed files with 11635 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// @ts-check
const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld('electronAPI', {
// File dialogs
openFiles: (filters) => ipcRenderer.invoke('dialog:openFiles', filters),
openFile: (filters) => ipcRenderer.invoke('dialog:openFile', filters),
// Backend URL
getBackendURL: () => ipcRenderer.invoke('getBackendURL'),
});