@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) • 523 B
TypeScript
import { type Affix, type AffixualAdjunct, type ModularAdjunct, type PartialFormative } from "../index.js";
/**
* Merges affixual and modular adjuncts into a formative.
*
* @param adjuncts The adjunct to be merged into the formative.
* @param formative The original formative.
* @returns The newly merged formative.
*/
export declare function mergeAdjunctsAndFormative(adjuncts: (AffixualAdjunct | ModularAdjunct)[], formative: PartialFormative): PartialFormative & {
readonly slotXIAffixes: readonly Affix[];
};