5 lines
381 B
TypeScript
5 lines
381 B
TypeScript
import type { Node } from '../../types.js';
|
|
import type { D3Selection } from '../../../types.js';
|
|
export declare const createDecisionBoxPathD: (x: number, y: number, size: number) => string;
|
|
export declare function question<T extends SVGGraphicsElement>(parent: D3Selection<T>, node: Node): Promise<import("d3-selection").Selection<SVGGElement, unknown, Element | null, unknown>>;
|