| 5 | // Extend global interface for electron APIs |
| 6 | declare global { |
| 7 | interface Window { |
| 8 | electronAPI: { |
| 9 | invoke: ReturnType<typeof vi.fn> |
| 10 | onMainProc: ReturnType<typeof vi.fn> |
| 11 | offMainProc: ReturnType<typeof vi.fn> |
| 12 | } |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | declare const globalThis: { |
nothing calls this directly
no outgoing calls
no test coverage detected