API Documentation
    Preparing search index...

    Interface Node

    Base type of tree nodes.

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

    Properties

    Methods

    Properties

    children?: Node[]

    Optional array of child nodes.

    Methods

    • Optional accessor function for child nodes.

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