| 31 | } |
| 32 | |
| 33 | interface TableInstanceOptions extends TableOptions { |
| 34 | chars: Record<CharName, string>; |
| 35 | style: { |
| 36 | "padding-left": number; |
| 37 | "padding-right": number; |
| 38 | head: string[]; |
| 39 | border: string[]; |
| 40 | compact: boolean; |
| 41 | }; |
| 42 | } |
| 43 | |
| 44 | interface TableConstructorOptions extends Partial<TableOptions> { |
| 45 | chars?: Partial<Record<CharName, string>>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…