mermaid
Version:
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
9 lines (8 loc) • 365 B
TypeScript
import type { LayoutData } from '../../types.js';
import type { D3Selection } from '../../../types.js';
export declare function adjustLayout(data4Layout: LayoutData, groups: {
edgePaths: D3Selection<SVGGElement>;
rootGroups: D3Selection<SVGGElement>;
[key: string]: D3Selection<SVGGElement>;
edgeLabels: D3Selection<SVGGElement>;
}): Promise<void>;