| 96 | type BrowserPlatform = 'darwin' | 'linux' | 'win32'; |
| 97 | |
| 98 | interface BrowserMatch { |
| 99 | browser: BrowserInfo; |
| 100 | platform: BrowserPlatform; |
| 101 | dbPath: string; |
| 102 | } |
| 103 | |
| 104 | // ─── Browser Registry ─────────────────────────────────────────── |
| 105 | // Hardcoded — NEVER interpolate user input into shell commands. |
nothing calls this directly
no outgoing calls
no test coverage detected