d3-dag
    Preparing search index...

    Interface WrappedChildrenData<NodeDatum, ChildData>

    a wrapped children data operator that functions as a children operator

    When creating a Hierarchy with a children data operator, the corresponding Hierarchy#children will be wrapped in this.

    interface WrappedChildrenData<
        NodeDatum,
        ChildData extends ChildrenData<NodeDatum>,
    > {
        wrapped: ChildData;
        (
            datum: NodeDatum,
            index: number,
        ): undefined | Iterable<NodeDatum, any, any>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    wrapped: ChildData

    the wrapped children data operator