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.

12 lines (11 loc) 428 B
/** * The type of information contained in the Vn slot. * * - `empty` means the slot contains MNO Valence and has been elided. * - `non-aspect` means the slot contains a non-elided Valence, Phase, Effect, or * Level. * - `aspect` means the slot contains an Aspect. */ export type VNType = "empty" | "non-aspect" | "aspect"; /** An array containing all Vn types. */ export declare const ALL_VN_TYPES: readonly VNType[];