@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.
10 lines (9 loc) • 313 B
TypeScript
/** A numeric adjunct. */
export type NumericAdjunct = number | bigint;
/**
* Converts a numeric adjunct to Ithkuil.
*
* @param bias The adjunct to be converted.
* @returns Romanized Ithkuilic text representing the adjunct.
*/
export declare function numericAdjunctToIthkuil(number: NumericAdjunct): string;