🐛 tab support

This commit is contained in:
2026-02-28 10:40:26 +10:00
parent 02c5a09538
commit 62cd20c723
9 changed files with 81 additions and 14 deletions

View File

@@ -81,5 +81,8 @@ contextBridge.exposeInMainWorld('api', {
ipcRenderer.invoke('fs:createFile', parentPath, name),
createDir: (parentPath: string, name: string): Promise<string> =>
ipcRenderer.invoke('fs:createDir', parentPath, name)
ipcRenderer.invoke('fs:createDir', parentPath, name),
moveFile: (sourcePath: string, targetDirPath: string): Promise<string> =>
ipcRenderer.invoke('fs:move', sourcePath, targetDirPath)
})