feat: 解析多表头excel
This commit is contained in:
@@ -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'),
|
||||
});
|
||||
Reference in New Issue
Block a user