| 4 | import { RenderInline, getPlainTextLength } from './InlineMarkdownRenderer.js' |
| 5 | |
| 6 | interface TableRendererProps { |
| 7 | headers: string[] |
| 8 | rows: string[][] |
| 9 | terminalWidth: number |
| 10 | overrideColor?: string |
| 11 | } |
| 12 | |
| 13 | export const TableRenderer: React.FC<TableRendererProps> = ({ |
| 14 | headers, |
nothing calls this directly
no outgoing calls
no test coverage detected