blob: 479ff4ff6a7316810ec6e8b41a98fc17b2e83064 [file] [log] [blame]
Nikolay Vitkovd76576c2024-12-02 14:10:151// @flow
2
3declare function tarjan<T>(graph: Map<T, Set<T>>): Array<Set<T>>;
4
5declare module.exports: typeof tarjan;