summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-07-15 22:27:55 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-07-15 22:27:55 +0200
commit3be5285488090ab70254b3080e33e64e6c702d2c (patch)
tree1e54462f560fd759b5be13d5ecfe1fa5c2c832ed /themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts
parent69075c6fb15ae660fc3d78eb2a4dfcde1c5fba1c (diff)
sync theme
Diffstat (limited to 'themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts')
-rw-r--r--themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts b/themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts
deleted file mode 100644
index a822fd8..0000000
--- a/themes/blowfish/assets/lib/mermaid/dagre-wrapper/edgeMarker.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import type { SVG } from '../diagram-api/types.js';
-import type { EdgeData } from '../types.js';
-/**
- * Adds SVG markers to a path element based on the arrow types specified in the edge.
- *
- * @param svgPath - The SVG path element to add markers to.
- * @param edge - The edge data object containing the arrow types.
- * @param url - The URL of the SVG marker definitions.
- * @param id - The ID prefix for the SVG marker definitions.
- * @param diagramType - The type of diagram being rendered.
- */
-export declare const addEdgeMarkers: (svgPath: SVG, edge: Pick<EdgeData, 'arrowTypeStart' | 'arrowTypeEnd'>, url: string, id: string, diagramType: string) => void;