5 lines
482 B
TypeScript
5 lines
482 B
TypeScript
|
|
import type { Node } from '../../types.js';
|
||
|
|
import type { D3Selection } from '../../../types.js';
|
||
|
|
export declare function roundedRect<T extends SVGGraphicsElement>(parent: D3Selection<T>, node: Node): Promise<import("d3-selection").Selection<SVGGElement, unknown, Element | null, unknown>>;
|
||
|
|
export declare function labelRect<T extends SVGGraphicsElement>(parent: D3Selection<T>, node: Node): Promise<import("d3-selection").Selection<SVGGElement, unknown, Element | null, unknown>>;
|