(text: string)
| 53 | } from '../xcodebuild-run-state.ts'; |
| 54 | |
| 55 | function formatCliTextBlock(text: string): string { |
| 56 | return text |
| 57 | .split('\n') |
| 58 | .map((line) => formatCliTextLine(line)) |
| 59 | .join('\n'); |
| 60 | } |
| 61 | |
| 62 | interface CliTextSink { |
| 63 | clearTransient(): void; |
no test coverage detected