First commit.

Signed-off-by: Chen Xiao <abigwc@gmail.com>
This commit is contained in:
Chen Xiao
2026-05-08 14:43:16 +08:00
commit 0b64e2de94
10989 changed files with 2253791 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { SVG, SVGGroup } from '../../diagram-api/types.js';
import type { Bound, D3RectElement, D3TextElement, RectData, TextData, TextObject } from './commonTypes.js';
export declare const drawRect: (element: SVG | SVGGroup, rectData: RectData) => D3RectElement;
/**
* Draws a background rectangle
*
* @param element - Diagram (reference for bounds)
* @param bounds - Shape of the rectangle
*/
export declare const drawBackgroundRect: (element: SVG | SVGGroup, bounds: Bound) => void;
export declare const drawText: (element: SVG | SVGGroup, textData: TextData) => D3TextElement;
export declare const drawImage: (elem: SVG | SVGGroup, x: number, y: number, link: string) => void;
export declare const drawEmbeddedImage: (element: SVG | SVGGroup, x: number, y: number, link: string) => void;
export declare const getNoteRect: () => RectData;
export declare const getTextObj: () => TextObject;
export declare const createTooltip: () => import("d3-selection").Selection<HTMLDivElement, unknown, HTMLElement, any>;