UNPKG

mermaid

Version:

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

7 lines (6 loc) 300 B
import type { Graph, Layering } from './helpers.js'; import type { LayeringOptions } from './phase2.options.js'; /** * Classic longest-path layering with optional compaction and lane awareness. */ export declare function assignLayers_LongestPath(gAcyclic: Graph, opts?: LayeringOptions): Layering;