(apiName, args)
| 7 | * 如果主进程返回 Error 实例,自动抛出异常 |
| 8 | */ |
| 9 | const ipcSendSync = (apiName, args) => { |
| 10 | const result = electron.ipcRenderer.sendSync('plugin.api', apiName, args) |
| 11 | if (result instanceof Error) throw result |
| 12 | return result |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * 异步 IPC 调用 - 通过 plugin.api 通道发送异步消息 |