blob: 479ff4ff6a7316810ec6e8b41a98fc17b2e83064 [file] [log] [blame]
// @flow
declare function tarjan<T>(graph: Map<T, Set<T>>): Array<Set<T>>;
declare module.exports: typeof tarjan;