1 | export function drawRect(elem: any, rectData: any): any;
|
2 | export function drawFace(element: any, faceData: any): any;
|
3 | export function drawCircle(element: any, circleData: any): any;
|
4 | export function drawText(elem: any, textData: any): any;
|
5 | export function drawLabel(elem: any, txtObject: any): void;
|
6 | export function drawSection(elem: any, section: any, conf: any): void;
|
7 | export function drawTask(elem: any, task: any, conf: any): void;
|
8 | export function drawBackgroundRect(elem: any, bounds: any): void;
|
9 | export function getTextObj(): {
|
10 | x: number;
|
11 | y: number;
|
12 | fill: undefined;
|
13 | 'text-anchor': string;
|
14 | width: number;
|
15 | height: number;
|
16 | textMargin: number;
|
17 | rx: number;
|
18 | ry: number;
|
19 | };
|
20 | export function getNoteRect(): {
|
21 | x: number;
|
22 | y: number;
|
23 | width: number;
|
24 | anchor: string;
|
25 | height: number;
|
26 | rx: number;
|
27 | ry: number;
|
28 | };
|
29 | export function drawNode(elem: any, node: any, fullSection: any, conf: any): any;
|
30 | export function getVirtualNodeHeight(elem: any, node: any, conf: any): any;
|
31 | declare namespace _default {
|
32 | export { drawRect };
|
33 | export { drawCircle };
|
34 | export { drawSection };
|
35 | export { drawText };
|
36 | export { drawLabel };
|
37 | export { drawTask };
|
38 | export { drawBackgroundRect };
|
39 | export { getTextObj };
|
40 | export { getNoteRect };
|
41 | export { initGraphics };
|
42 | export { drawNode };
|
43 | export { getVirtualNodeHeight };
|
44 | }
|
45 | export default _default;
|
46 | declare function initGraphics(graphics: any): void;
|