index.js.flow 116 B

12345
  1. // @flow
  2. declare function tarjan<T>(graph: Map<T, Set<T>>): Array<Set<T>>;
  3. declare module.exports: typeof tarjan;