summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapDb.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapDb.d.ts')
-rw-r--r--themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapDb.d.ts30
1 files changed, 0 insertions, 30 deletions
diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapDb.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapDb.d.ts
deleted file mode 100644
index 9496af5..0000000
--- a/themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapDb.d.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import type { D3Element } from '../../mermaidAPI.js';
-import type { MindmapNode } from './mindmapTypes.js';
-declare const db: {
- readonly clear: () => void;
- readonly addNode: (level: number, id: string, descr: string, type: number) => void;
- readonly getMindmap: () => MindmapNode | null;
- readonly nodeType: {
- DEFAULT: number;
- NO_BORDER: number;
- ROUNDED_RECT: number;
- RECT: number;
- CIRCLE: number;
- CLOUD: number;
- BANG: number;
- HEXAGON: number;
- };
- readonly getType: (startStr: string, endStr: string) => number;
- readonly setElementForId: (id: number, element: D3Element) => void;
- readonly decorateNode: (decoration?: {
- class?: string;
- icon?: string;
- }) => void;
- readonly type2Str: (type: number) => "rect" | "circle" | "no-border" | "rounded-rect" | "cloud" | "bang" | "hexgon";
- readonly getLogger: () => Record<import("../../logger.js").LogLevel, {
- (...data: any[]): void;
- (message?: any, ...optionalParams: any[]): void;
- }>;
- readonly getElementById: (id: number) => any;
-};
-export default db;