UNPKG

@zsnout/ithkuil

Version:

A set of tools which can generate and parse romanized Ithkuil text and which can generate Ithkuil script from text and JSON data.

11 lines (10 loc) 328 B
/** * Gets all vertices on an SVG path. * * @param path The path to get the vertices of. * @returns The vertices of the path, in absolute coordinates. */ export declare function getVerticesOf(path: string): [x: number, y: number][]; export declare function DebugVertices(props: { children: SVGElement; }): SVGGElement;