Files
seagull-game/app/basepak/static/js/mermaid/rendering-util/rendering-elements/shapes/circle.d.ts

4 lines
369 B
TypeScript
Raw Normal View History

2025-11-23 14:59:17 -08:00
import type { D3Selection } from '../../../types.js';
import type { MindmapOptions, Node, ShapeRenderOptions } from '../../types.js';
export declare function circle<T extends SVGGraphicsElement>(parent: D3Selection<T>, node: Node, options?: MindmapOptions | ShapeRenderOptions): Promise<import("d3-selection").Selection<SVGGElement, unknown, Element | null, unknown>>;