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.

11 lines (10 loc) 429 B
import type { NumericAdjunct } from "../../adjunct/numeric.js"; import { type AffixDegree } from "../../affix/index.js"; import { type ReferentList } from "../../referential/index.js"; /** Slot III. */ export type SlotIII = string | NumericAdjunct | ReferentList | { /** The degree of the affix. */ readonly degree: AffixDegree; /** The consonantal form of the affix. */ readonly cs: string | number | bigint; };