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.

19 lines (18 loc) 645 B
/** * Shows a point. * * @param props Properties modifying how the point is displayed. * @returns An `SVGPathElement` showing the point. */ export declare function Point(props: { /** The x-coordinate of the displayed point. */ readonly x: number; /** The y-coordinate of the displayed point. */ readonly y: number; /** The color of the displayed point. */ readonly color?: string | undefined; /** The offset of the displayed point from the beginning of the path. */ readonly offset?: number | undefined; /** The size of the displayed point. */ readonly size?: number | undefined; }): SVGPathElement;