@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.
20 lines (19 loc) • 591 B
TypeScript
import type { Word } from "../generate/index.js";
export * from "./adjunct.js";
export * from "./affix.js";
export * from "./ca.js";
export * from "./case.js";
export * from "./cn.js";
export * from "./formative.js";
export * from "./glossable.js";
export * from "./referent-list-and-perspective.js";
export * from "./referent.js";
export * from "./referential.js";
export * from "./vn.js";
/**
* Glosses a word.
*
* @param word The word to gloss.
* @returns A `GlossString` representing the word.
*/
export declare function glossWord(word: Word): import("./glossable.js").GlossString;