Base type of tree nodes.

interface Node {
    children?: Node[];
    getChildren(): undefined | void | Node[] | Iterable<Node>;
}

Properties

Methods

Properties

children?: Node[]

Optional array of child nodes.

Methods

  • Optional accessor function for child nodes.

    Returns undefined | void | Node[] | Iterable<Node>