(event: EventType, data?: EventData)
| 9 | * @param data - Optional payload to include with the event. |
| 10 | */ |
| 11 | export function sendMainEvent(event: EventType, data?: EventData): void { |
| 12 | ipcRenderer.send(event, data); |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Send an IPC message from the renderer to the main process and await a response. |
no outgoing calls
no test coverage detected