package.dist.diagrams.architecture.svgDraw.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mermaid Show documentation
Show all versions of mermaid Show documentation
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
The newest version!
import type cytoscape from 'cytoscape';
import type { D3Element } from '../../types.js';
import { type ArchitectureDB, type ArchitectureJunction, type ArchitectureService } from './architectureTypes.js';
export declare const drawEdges: (edgesEl: D3Element, cy: cytoscape.Core) => Promise;
export declare const drawGroups: (groupsEl: D3Element, cy: cytoscape.Core) => Promise;
export declare const drawServices: (db: ArchitectureDB, elem: D3Element, services: ArchitectureService[]) => Promise;
export declare const drawJunctions: (db: ArchitectureDB, elem: D3Element, junctions: ArchitectureJunction[]) => void;