@ac-essentials/misc-util
    Preparing search index...

    Interface ITree<T, N, C>

    Interface representing a tree data structure.

    interface ITree<
        T,
        N extends ITreeNode<T, N, C>,
        C extends ITreeNodeChildren<T, N, C>,
    > {
        children: C;
        setValue(value: T): Promisable<void>;
        value(): Promisable<undefined | T>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    children: C

    Methods