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

    Interface TreeWalkerInterface<NodeType>

    A TreeWalker walks over a tree by visiting all available nodes.

    interface TreeWalkerInterface<NodeType extends Node> {
        walk(options?: TreeWalkerOptions<NodeType>): void;
    }

    Type Parameters

    • NodeType extends Node
    Index

    Methods

    Methods

    • Starts walking the tree by visiting all nodes. HINT: If no root node were present when constructing the TreeWalker, the root node must be present in the walk options.

      Parameters

      Returns void