@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) • 863 B
TypeScript
/** A referent target. */
export type ReferentTarget = "1m" | "2m" | "2p" | "ma" | "pa" | "mi" | "pi" | "Mx" | "Rdp" | "Obv" | "PVS";
/** An array containing all referent targets. */
export declare const ALL_REFERENT_TARGETS: readonly ReferentTarget[];
/** An object mapping referent targets to descriptions of them. */
export declare const REFERENT_TARGET_TO_DESCRIPTION_MAP: {
readonly "1m": "monadic speaker";
readonly "2m": "monadic addressee";
readonly "2p": "polyadic addressee";
readonly ma: "monadic animate 3rd party";
readonly pa: "polyadic animate 3rd party";
readonly mi: "monadic inanimate 3rd party";
readonly pi: "polyadic inanimate 3rd party";
readonly Mx: "mixed animate/inanimate 3rd party";
readonly Rdp: "Reduplicative (i.e., resumptive)";
readonly Obv: "Obviative";
readonly PVS: "Provisional";
};