Files
infocom-systems-design/node_modules/mermaid/dist/rendering-util/rendering-elements/shapes/insertPolygonShape.d.ts
2025-10-03 22:27:28 +03:00

6 lines
306 B
TypeScript

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>;