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) 467 B
import { type Affix } from "../../generate/affix/index.js"; import type { VowelForm } from "../vowel-form.js"; /** * Parses an affix. * * @param vx The Vx form of the affix to be parsed. * @param cs The Cs form of the affix to be parsed. * @param isAlone Whether this affix is standalone. * @returns The parsed affix. Throws an error if the Vx or Cs forms are invalid. */ export declare function parseAffix(vx: VowelForm, cs: string, isAlone: boolean): Affix;