blowfish/node_modules/mermaid/dist/diagrams/class/svgDraw.d.ts
2023-01-29 22:30:24 +00:00

28 lines
721 B
TypeScript

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 drawNote(elem: SVGSVGElement, note: {
id: string;
text: string;
class: string;
}, conf: any, diagObj: any): {
id: string;
text: string;
width: number;
height: number;
};
export function parseMember(text: any): {
displayText: string;
cssStyle: string;
};
declare namespace _default {
export { drawClass };
export { drawEdge };
export { drawNote };
export { parseMember };
}
export default _default;