@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) • 435 B
TypeScript
/** A specification. */
export type Specification = "BSC" | "CTE" | "CSV" | "OBJ";
/** An array containing all specifications. */
export declare const ALL_SPECIFICATIONS: readonly Specification[];
/** An object mapping from specifications to their names. */
export declare const SPECIFICATION_TO_NAME_MAP: {
readonly BSC: "Basic";
readonly CTE: "Contential";
readonly CSV: "Constitutive";
readonly OBJ: "Objective";
};