Files

6 lines
306 B
TypeScript
Raw Permalink Normal View History

2025-11-23 14:59:17 -08:00
import type { D3Selection } from '../../../types.js';
export declare function insertPolygonShape<T extends SVGGraphicsElement>(parent: D3Selection<T>, w: number, h: number, points: {
x: number;
y: number;
}[]): import("d3-selection").Selection<SVGPolygonElement, unknown, Element | null, unknown>;