@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.
14 lines (13 loc) • 623 B
TypeScript
import type { AffixualAdjunct } from "../../generate/adjunct/affixual/index.js";
import type { Stress } from "../transform.js";
/**
* Builds a multiple-affix affixual adjunct.
*
* @param word The word to be built.
* @param stress The stress of the adjunct.
* @returns Either a parsed `AffixualAdjunct` indicating a success, or
* `undefined` indicating a tokenization failure. Throws if the adjunct was
* successfully tokenized but had another error in it (e.g. invalid Cs slot,
* etc.).
*/
export declare function buildMultipleAffixAffixualAdjunct(word: string, stress: Stress): AffixualAdjunct | undefined;