* 发送错误消息给渲染进程
(event: Electron.IpcMainInvokeEvent, eventChannel: string, error: string)
| 144 | * 发送错误消息给渲染进程 |
| 145 | */ |
| 146 | private sendError(event: Electron.IpcMainInvokeEvent, eventChannel: string, error: string): void { |
| 147 | event.sender.send(eventChannel, { |
| 148 | type: 'error', |
| 149 | error |
| 150 | } as AIStreamChunk) |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * 发送完成消息给渲染进程 |
no outgoing calls
no test coverage detected