@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.
18 lines (17 loc) • 671 B
TypeScript
export * from "./affix.js";
export * from "./ca.js";
export * from "./case-scope.js";
export * from "./case.js";
export * from "./formative.js";
export * from "./illocution-validation.js";
export * from "./mood.js";
/**
* Parses a formative.
*
* @param text The formative to be parsed.
* @returns The parsed formative, or `undefined` if the formative failed to
* tokenize. Throws an error if the formative successfully tokenized but had
* another error (e.g. the Vr slot had the value -üö-, or an affix contained
* the Cs form -ç-).
*/
export declare function parseFormative(text: string): import("../../generate/index.js").PartialFormative | undefined;