| 20 | type VerticalAlignment = "top" | "center" | "bottom"; |
| 21 | |
| 22 | interface TableOptions { |
| 23 | truncate: string; |
| 24 | colWidths: Array<number | null>; |
| 25 | rowHeights: Array<number | null>; |
| 26 | colAligns: HorizontalAlignment[]; |
| 27 | rowAligns: VerticalAlignment[]; |
| 28 | head: string[]; |
| 29 | wordWrap: boolean; |
| 30 | wrapOnWordBoundary: boolean; |
| 31 | } |
| 32 | |
| 33 | interface TableInstanceOptions extends TableOptions { |
| 34 | chars: Record<CharName, string>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…