summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/mindmap/mindmapRenderer.d.ts
blob: f69160a22290fad36b74961e3db78a08143e3c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import type { DrawDefinition } from '../../diagram-api/types.js';
declare module 'cytoscape' {
    interface EdgeSingular {
        _private: {
            bodyBounds: unknown;
            rscratch: {
                startX: number;
                startY: number;
                midX: number;
                midY: number;
                endX: number;
                endY: number;
            };
        };
    }
}
export declare const draw: DrawDefinition;
declare const _default: {
    draw: DrawDefinition;
};
export default _default;