| 49 | type CellValue = boolean | number | bigint | string | null | undefined; |
| 50 | |
| 51 | interface CellOptions { |
| 52 | content: CellValue; |
| 53 | chars?: Partial<Record<CharName, string>>; |
| 54 | truncate?: string; |
| 55 | colSpan?: number; |
| 56 | rowSpan?: number; |
| 57 | hAlign?: HorizontalAlignment; |
| 58 | vAlign?: VerticalAlignment; |
| 59 | wordWrap?: boolean; |
| 60 | wrapOnWordBoundary?: boolean; |
| 61 | href?: string; |
| 62 | style?: { |
| 63 | "padding-left"?: number; |
| 64 | "padding-right"?: number; |
| 65 | head?: string[]; |
| 66 | border?: string[]; |
| 67 | }; |
| 68 | } |
| 69 | |
| 70 | interface GenericTable<T> extends Array<T> { |
| 71 | options: TableInstanceOptions; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…