| 21 | ) |
| 22 | |
| 23 | interface SpawnedProcess { |
| 24 | dispose: () => Promise<void> |
| 25 | flush: () => void |
| 26 | onStdout: (predicate: (message: string) => boolean) => Promise<void> |
| 27 | onStderr: (predicate: (message: string) => boolean) => Promise<void> |
| 28 | } |
| 29 | |
| 30 | interface ChildProcessOptions { |
| 31 | cwd?: string |
nothing calls this directly
no outgoing calls
no test coverage detected