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.

17 lines (16 loc) 625 B
/** An illocution. */ export type Illocution = "ASR" | "DIR" | "DEC" | "IRG" | "VRF" | "ADM" | "POT" | "HOR" | "CNJ"; /** An array containing all illocutions. */ export declare const ALL_ILLOCUTIONS: readonly Illocution[]; /** An object mapping from illocutuons to their names. */ export declare const ILLOCUTION_TO_NAME_MAP: { readonly ASR: "Assertive"; readonly DIR: "Directive"; readonly DEC: "Declarative"; readonly IRG: "Interrogative"; readonly VRF: "Verificative"; readonly ADM: "Admonitive"; readonly POT: "Potentiative"; readonly HOR: "Hortative"; readonly CNJ: "Conjectural"; };