@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.
12 lines (11 loc) • 401 B
TypeScript
/** A context. */
export type Context = "EXS" | "FNC" | "RPS" | "AMG";
/** An array containing all contexts. */
export declare const ALL_CONTEXTS: readonly Context[];
/** An object mapping contexts to their names. */
export declare const CONTEXT_TO_NAME_MAP: {
readonly EXS: "Existential";
readonly FNC: "Functional";
readonly RPS: "Representational";
readonly AMG: "Amalgamative";
};