UNPKG

mermaid

Version:

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

7 lines (6 loc) 312 B
import type { Graph, Layering } from './helpers.js'; import type { LayeringOptions } from './phase2.options.js'; /** * Gravity-based layering algorithm that minimizes edge lengths while maintaining acyclicity. */ export declare function assignLayers_Gravity(gAcyclic: Graph, opts?: LayeringOptions): Layering;