Represents a Node in a tree structure.

interface ITreeNode {
    child?: Omit<ITreeViewNode, "child">[];
    label: string;
    value: string;
}

Hierarchy (View Summary)

Properties

Properties

child?: Omit<ITreeViewNode, "child">[]

Represents an array of child nodes excluding the "child" property (recursion).

label: string
value: string