UNPKG

@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) 329 B
/** The version of a formative. */ export type Version = "PRC" | "CPT"; /** An array containing all versions. */ export declare const ALL_VERSIONS: readonly Version[]; /** An object mapping versions to their names. */ export declare const VERSION_TO_NAME_MAP: { readonly PRC: "Processual"; readonly CPT: "Completive"; };