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) 560 B
/** * Creates an SVG element that blinks. * * @param props Properties modifying the animation. * @returns An `SVGGElement` which starts hidden, then blinks in or out every * `props.interval` milliseconds. */ export declare function Blink(props: { /** The elements to be blinked. */ readonly children?: SVGElement | SVGElement[] | undefined; /** * The number of milliseconds between switching from hidden to visible and * vice versa. * * @default 1000 */ readonly interval?: number | undefined; }): SVGGElement;