@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.
11 lines (10 loc) • 404 B
TypeScript
/** A referent effect. */
export type ReferentEffect = "NEU" | "BEN" | "DET";
/** An array containing all referent effects. */
export declare const ALL_REFERENT_EFFECTS: readonly ReferentEffect[];
/** An object mapping referent effects to their names. */
export declare const REFERENT_EFFECT_TO_NAME_MAP: {
readonly NEU: "Neutral";
readonly BEN: "Beneficial";
readonly DET: "Detrimental";
};