interface GridFooterNode {
    depth: number;
    id: GridRowId;
    parent: GridRowId;
    type: "footer";
}

Hierarchy (view full)

Properties

Properties

depth: number

Depth of this node in the tree.

The uniq id of this node.

parent: GridRowId

The id of the group containing this node.

type