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.

13 lines (12 loc) 398 B
/** Information describing a break character. */ export interface BreakCharacter { /** The width of this character. */ readonly size?: number | undefined; } /** * Constructs a `BreakCharacter`. * * @param props Properties modifying this character's behavior. * @returns An `SVGGElement` representing the character. */ export declare function Break(props: BreakCharacter): SVGGElement;