UNPKG

mermaid

Version:

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

7 lines (6 loc) 203 B
import type { Graph, Edge } from './helpers.js'; export interface CycleRemovalResult { acyclic: Graph; reversed: Edge[]; } export declare function removeCycles_DFS(g: Graph): CycleRemovalResult;