map.apps Bundle APIs 4.20.0
    Preparing search index...

    Base type of tree nodes.

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

    Properties

    Methods

    Properties

    children?: Node[]

    Optional array of child nodes.

    Methods

    • Optional accessor function for child nodes.

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