| 17 | export type SpawnFn = (command: string, args: ReadonlyArray<string>) => SpawnedLike; |
| 18 | |
| 19 | export interface OutputSink { |
| 20 | appendLine(line: string): void; |
| 21 | } |
| 22 | |
| 23 | export interface ServerManagerOptions { |
| 24 | command: string; |
no outgoing calls
no test coverage detected