mwg API
    Preparing search index...

    Interface TreeRow<T>

    A tree node as the flattened view holds it: its depth and whether its children are showing.

    interface TreeRow<T> {
        depth: number;
        expanded: boolean;
        hasChildren: boolean;
        node: TreeNode<T>;
    }

    Type Parameters

    • T
    Index
    depth: number
    expanded: boolean
    hasChildren: boolean
    node: TreeNode<T>