@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.
17 lines (16 loc) • 619 B
TypeScript
import type { Specification } from "../formative/index.js";
/** An object mapping from specifications (in referentials) to Ithkuil. */
export declare const REFERENTIAL_SPECIFICATION_TO_ITHKUIL_MAP: {
readonly BSC: "x";
readonly CTE: "xt";
readonly CSV: "xp";
readonly OBJ: "xx";
};
/**
* Converts a specification (in a referential) into Ithkuil.
*
* @param specification The specification to be converted.
* @returns Romanized Ithkuilic text representing the specification (in a
* referential).
*/
export declare function referentialSpecificationToIthkuil(specification: Specification): string;