@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) • 643 B
TypeScript
import type { PlainAdjunct } from "../../generate/adjunct/index.js";
export * from "./bias.js";
export * from "./modular.js";
export * from "./multiple-affix.js";
export * from "./numeric.js";
export * from "./parsing.js";
export * from "./register.js";
export * from "./single-affix.js";
export * from "./suppletive.js";
/**
* Parses an adjunct.
*
* @param text The adjunct to be parsed.
* @returns The parsed adjunct, or `undefined` if the adjunct failed to
* tokenize. Throws an error if the adjunct successfully tokenized but had
* another error.
*/
export declare function parseAdjunct(text: string): PlainAdjunct | undefined;