Skip to content

Commit a085952

Browse files
authored
fix: resolve ipcRenderer no returns (#478)
1 parent c7e5fd7 commit a085952

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

electron/preload/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ import { ipcRenderer, contextBridge } from 'electron'
44
contextBridge.exposeInMainWorld('ipcRenderer', {
55
on(...args: Parameters<typeof ipcRenderer.on>) {
66
const [channel, listener] = args
7-
ipcRenderer.on(channel, (event, ...args) => listener(event, ...args))
7+
return ipcRenderer.on(channel, (event, ...args) => listener(event, ...args))
88
},
99
off(...args: Parameters<typeof ipcRenderer.off>) {
1010
const [channel, ...omit] = args
11-
ipcRenderer.off(channel, ...omit)
11+
return ipcRenderer.off(channel, ...omit)
1212
},
1313
send(...args: Parameters<typeof ipcRenderer.send>) {
1414
const [channel, ...omit] = args
15-
ipcRenderer.send(channel, ...omit)
15+
return ipcRenderer.send(channel, ...omit)
1616
},
1717
invoke(...args: Parameters<typeof ipcRenderer.invoke>) {
1818
const [channel, ...omit] = args
19-
ipcRenderer.invoke(channel, ...omit)
19+
return ipcRenderer.invoke(channel, ...omit)
2020
},
2121

2222
// You can expose other APTs you need here.

0 commit comments

Comments
 (0)