UNPKG

mermaid

Version:

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

7 lines (6 loc) 291 B
import type { Graph, NodeId } from './helpers.js'; /** * Heuristic to push nodes with only cross-lane outgoing edges downward so * that same-lane successors have room to appear above them. */ export declare function adjustCrossLaneSources(g: Graph, rankOf: Record<NodeId, number>): void;