(line: string, width: number)
| 24 | } |
| 25 | |
| 26 | export function fitLine(line: string, width: number): string { |
| 27 | return visibleWidth(line) > width ? truncateToWidth(line, width, '…') : line; |
| 28 | } |
| 29 | |
| 30 | export function formatToolResultContent(content: ToolResultContent): string { |
| 31 | switch (content.kind) { |
no outgoing calls
no test coverage detected