| 7 | } from "@glideapps/glide-data-grid"; |
| 8 | |
| 9 | interface TreeViewCellProps { |
| 10 | readonly kind: "tree-view-cell"; |
| 11 | readonly text: string; |
| 12 | readonly isOpen: boolean; |
| 13 | readonly canOpen: boolean; |
| 14 | readonly depth: number; |
| 15 | readonly onClickOpener?: (cell: TreeViewCell) => TreeViewCell | undefined; |
| 16 | } |
| 17 | |
| 18 | export type TreeViewCell = CustomCell<TreeViewCellProps> & { readonly: true }; |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…