Interface TreeNode<T>

    Recursive container: a value plus zero-or-more children of the same shape. Value is unconstrained — a single cell or a compound record (e.g. a bone with local + world poses). Structural edits go through network().

    interface TreeNode<T> {
        children: readonly TreeNode<T>[];
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    children: readonly TreeNode<T>[]
    value: T