* 通知渲染进程:插件页面已加载完成
(pluginName: string, pluginPath: string)
| 307 | * 通知渲染进程:插件页面已加载完成 |
| 308 | */ |
| 309 | private sendPluginLoadedEvent(pluginName: string, pluginPath: string): void { |
| 310 | this.mainWindow?.webContents.send('plugin-loaded', { |
| 311 | name: pluginName, |
| 312 | path: pluginPath |
| 313 | }) |
| 314 | } |
| 315 | private mainWindow: BrowserWindow | null = null |
| 316 | private pluginView: WebContentsView | null = null |
| 317 | private currentPluginPath: string | null = null |
no outgoing calls
no test coverage detected