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.

5 lines (4 loc) 258 B
/** A dipthong permissible in Ithkuil. */ export type Dipthong = "ai" | "ei" | "ëi" | "oi" | "ui" | "au" | "eu" | "ëu" | "ou" | "iu"; /** An array containing all permissible dipthongs in Ithkuil. */ export declare const ALL_DIPTHONGS: readonly Dipthong[];