summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/common/svgDrawCommon.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blowfish/assets/lib/mermaid/diagrams/common/svgDrawCommon.d.ts')
-rw-r--r--themes/blowfish/assets/lib/mermaid/diagrams/common/svgDrawCommon.d.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/common/svgDrawCommon.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/common/svgDrawCommon.d.ts
deleted file mode 100644
index 3d864ab..0000000
--- a/themes/blowfish/assets/lib/mermaid/diagrams/common/svgDrawCommon.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import type { Group, SVG } from '../../diagram-api/types.js';
-import type { Bound, D3RectElement, D3TextElement, RectData, TextData, TextObject } from './commonTypes.js';
-export declare const drawRect: (element: SVG | Group, rectData: RectData) => D3RectElement;
-/**
- * Draws a background rectangle
- *
- * @param element - Diagram (reference for bounds)
- * @param bounds - Shape of the rectangle
- */
-export declare const drawBackgroundRect: (element: SVG | Group, bounds: Bound) => void;
-export declare const drawText: (element: SVG | Group, textData: TextData) => D3TextElement;
-export declare const drawImage: (elem: SVG | Group, x: number, y: number, link: string) => void;
-export declare const drawEmbeddedImage: (element: SVG | Group, x: number, y: number, link: string) => void;
-export declare const getNoteRect: () => RectData;
-export declare const getTextObj: () => TextObject;