MCPcopy
hub / github.com/glideapps/glide-data-grid / TreeViewCellProps

Interface TreeViewCellProps

packages/cells/src/cells/tree-view-cell.tsx:9–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7} from "@glideapps/glide-data-grid";
8
9interface 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
18export type TreeViewCell = CustomCell<TreeViewCellProps> & { readonly: true };
19

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…