1 | export function drawEdge(elem: any, path: any, relation: any, conf: any, diagObj: any): void;
|
2 | export function drawClass(elem: SVGSVGElement, classDef: any, conf: any, diagObj: any): {
|
3 | id: any;
|
4 | label: any;
|
5 | width: number;
|
6 | height: number;
|
7 | };
|
8 | export function getClassTitleString(classDef: any): any;
|
9 | export function drawNote(elem: SVGSVGElement, note: {
|
10 | id: string;
|
11 | text: string;
|
12 | class: string;
|
13 | }, conf: any, diagObj: any): {
|
14 | id: string;
|
15 | text: string;
|
16 | width: number;
|
17 | height: number;
|
18 | };
|
19 | declare namespace _default {
|
20 | export { getClassTitleString };
|
21 | export { drawClass };
|
22 | export { drawEdge };
|
23 | export { drawNote };
|
24 | }
|
25 | export default _default;
|