@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.
15 lines (14 loc) • 587 B
TypeScript
import { type Context } from "../../generate/index.js";
/**
* Creates the superposed diacritic of a primary character as an SVG path.
*
* @param props Properties that modify the diacritic.
* @returns An `SVGPathElement` containing the diacritic, or `undefined` if no
* diacritic is needed.
*/
export declare function PrimarySuperPosed({ handwritten, context, }: {
/** Whether this character is handwritten. */
readonly handwritten?: boolean | undefined;
/** The context of the character. */
readonly context?: Context | undefined;
}): SVGPathElement | undefined;