@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.
10 lines (9 loc) • 318 B
TypeScript
/** An essence. */
export type Essence = "NRM" | "RPV";
/** An array containing all essences. */
export declare const ALL_ESSENCES: readonly Essence[];
/** An object mapping from essences to their names. */
export declare const ESSENCE_TO_NAME_MAP: {
readonly NRM: "Normal";
readonly RPV: "Representative";
};