mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-27 17:41:53 +02:00
28 lines
721 B
TypeScript
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;
|