@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) • 402 B
TypeScript
/** A perspective. */
export type Perspective = "M" | "G" | "N" | "A";
/** An array containing all perspectives. */
export declare const ALL_PERSPECTIVES: readonly Perspective[];
/** An object mapping from perspectives to their names. */
export declare const PERSPECTIVE_TO_NAME_MAP: {
readonly M: "Monadic";
readonly G: "Agglomerative";
readonly N: "Nomic";
readonly A: "Abstract";
};