| 7 | |
| 8 | declare global { |
| 9 | interface Window { |
| 10 | ipc?: { |
| 11 | invoke: (channel: string, ...args: any[]) => Promise<any>; |
| 12 | send: (channel: string, ...args: any[]) => void; |
| 13 | on: (channel: string, callback: (...args: any[]) => void) => () => void; |
| 14 | }; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | export {}; |
nothing calls this directly
no outgoing calls
no test coverage detected