interface GridSkeletonRowNode {
    depth: number;
    id: GridRowId;
    parent: GridRowId;
    type: "skeletonRow";
}

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. Is always equal to GRID_ROOT_GROUP_ID.

type