summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/class/svgDraw.d.ts
blob: 661cdf3f356a827dcde08af7dee4e264a93861f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export function drawEdge(elem: any, path: any, relation: any, conf: any, diagObj: any): void;
export function drawClass(elem: SVGSVGElement, classDef: any, conf: any, diagObj: any): {
    id: any;
    label: any;
    width: number;
    height: number;
};
export function getClassTitleString(classDef: any): any;
export function drawNote(elem: SVGSVGElement, note: {
    id: string;
    text: string;
    class: string;
}, conf: any, diagObj: any): {
    id: string;
    text: string;
    width: number;
    height: number;
};
declare namespace _default {
    export { getClassTitleString };
    export { drawClass };
    export { drawEdge };
    export { drawNote };
}
export default _default;