UNPKG

path-scc

Version:

Find all strongly-connected components in a graph structure.

9 lines (8 loc) 231 B
export interface ISCCNode { id: string; } export interface ISCCLink { source: string; target: string; } export declare function scc<Node extends ISCCNode, Link extends ISCCLink>(nodes: Node[], links: Link[]): Node[][];