Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface ITreeNode<T>

    Base interface for nodes in tree-like structures used by Colibrio.

    interface ITreeNode<T> {
        getChildren(): readonly T[];
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Methods

    • Get the children of this node.

      Returns readonly T[]