@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) • 317 B
TypeScript
/** A function. */
export type Function = "STA" | "DYN";
/** An array containing all functions. */
export declare const ALL_FUNCTIONS: readonly Function[];
/** An object mapping from functions to their names. */
export declare const FUNCTION_TO_NAME_MAP: {
readonly STA: "Static";
readonly DYN: "Dynamic";
};