* Global type declarations for the Electron preload API. * Exposed via contextBridge.exposeInMainWorld('electronAPI', ...) in electron/preload.ts.
| 4 | */ |
| 5 | |
| 6 | interface ClaudeInstallDetection { |
| 7 | path: string; |
| 8 | version: string | null; |
| 9 | type: 'native' | 'homebrew' | 'npm' | 'bun' | 'unknown'; |
| 10 | } |
| 11 | |
| 12 | interface ElectronInstallAPI { |
| 13 | checkPrerequisites: () => Promise<{ |
nothing calls this directly
no outgoing calls
no test coverage detected