| 14 | ) => JSX.Element; |
| 15 | |
| 16 | export interface ColumnViewNode { |
| 17 | id: string; |
| 18 | name: string; |
| 19 | title: string; |
| 20 | subtitle?: string; |
| 21 | longTitle?: string; |
| 22 | icon?: IconComponent; |
| 23 | children: ColumnViewNode[]; |
| 24 | } |
| 25 | |
| 26 | export type ColumnViewOptions = { |
| 27 | rootNode: ColumnViewNode; |
nothing calls this directly
no outgoing calls
no test coverage detected