interface GridLeafNode {
    depth: number;
    groupingKey: null | GridKeyValue;
    id: GridRowId;
    parent: GridRowId;
    type: "leaf";
}

Hierarchy (view full)

Properties

depth: number

Depth of this node in the tree.

groupingKey: null | GridKeyValue

The key used to group the children of this row.

The uniq id of this node.

parent: GridRowId

The id of the group containing this node.

type