| 10 | const WINDOWS_EXE_SHIMS = new Set(['bun', 'bunx']); |
| 11 | |
| 12 | interface ExecaOptions { |
| 13 | cwd?: string | URL; |
| 14 | stdio?: StdioOptions; |
| 15 | timeout?: number; |
| 16 | } |
| 17 | interface Output { |
| 18 | stdout: string; |
| 19 | stderr: string; |
nothing calls this directly
no outgoing calls
no test coverage detected