d3-dag
    Preparing search index...

    Interface WrappedChildren<NodeDatum, Child>

    a wrapped children operator that functions as a children data operator

    When creating a Hierarchy with a children operator, the corresponding Hierarchy#childrenData will be wrapped in this. This version returns undefined for all link data.

    interface WrappedChildren<NodeDatum, Child extends Children<NodeDatum>> {
        wrapped: Child;
        (
            datum: NodeDatum,
            index: number,
        ): undefined | Iterable<readonly [NodeDatum, undefined], any, any>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    wrapped: Child

    the wrapped children operator