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.

18 lines (17 loc) 604 B
import { type Case } from "../../formative/slot-9/case.js"; import { type SuppletiveAdjunctType } from "./type.js"; export * from "./type.js"; /** A suppletive adjunct. */ export type SuppletiveAdjunct = { /** The type of the adjunct. */ readonly type: SuppletiveAdjunctType; /** The case of the adjunct. */ readonly case: Case; }; /** * Converts a suppletive adjunct into Ithkuil. * * @param adjunct The adjunct to be converted. * @returns Romanized Ithkuilic text representing the adjunct. */ export declare function suppletiveAdjunctToIthkuil(adjunct: SuppletiveAdjunct): string;