ixfx
    Preparing search index...

    Type Alias SimplifiedNode<TValue>

    A simplified node has its parentage stripped.

    To create: Trees.Mutable.stripParentage: Create based on a Trees.TreeNode instance Trees.FromObject.createSimplified: Create based on an object

    type SimplifiedNode<TValue> = {
        childrenStore: ReadonlyArray<SimplifiedNode<TValue>>;
        value: TValue | undefined;
    }

    Type Parameters

    • TValue
    Index

    Properties

    Properties

    childrenStore: ReadonlyArray<SimplifiedNode<TValue>>

    Children nodes of this one

    value: TValue | undefined

    Value of node, or undefined if it has no value