topological-sort-group
    Preparing search index...

    Type Alias Node<T>

    type Node<T = Key> = {
        edges: Key[];
        value: T;
    }

    Type Parameters

    Index

    Properties

    Properties

    edges: Key[]
    value: T