(app_: App)
| 313 | } |
| 314 | |
| 315 | export const onApp = (app_: App) => { |
| 316 | modules.forEach((plugin) => { |
| 317 | if (plugin.onApp) { |
| 318 | try { |
| 319 | plugin.onApp(app_); |
| 320 | } catch (e) { |
| 321 | notify('Plugin error!', `"${plugin._name}" has encountered an error. Check Developer Tools for details.`, { |
| 322 | error: e |
| 323 | }); |
| 324 | } |
| 325 | } |
| 326 | }); |
| 327 | }; |
| 328 | |
| 329 | export const onWindowClass = (win: BrowserWindow) => { |
| 330 | modules.forEach((plugin) => { |