fix: resolve window.ipcRenderer.invoke no returns a Promise

This commit is contained in:
King Judd 2024-03-26 15:18:16 +08:00 committed by GitHub
parent c7e5fd70cd
commit 2af2a376b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ contextBridge.exposeInMainWorld('ipcRenderer', {
},
invoke(...args: Parameters<typeof ipcRenderer.invoke>) {
const [channel, ...omit] = args
ipcRenderer.invoke(channel, ...omit)
return ipcRenderer.invoke(channel, ...omit)
},
// You can expose other APTs you need here.