@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) • 384 B
TypeScript
import type { Mood } from "../../generate/formative/slot-8/mood.js";
/**
* Parsed a Cn form as a mood.
*
* @param cn The Cn form to be parsed.
* @returns An array containing the parsed mood and a boolean value indicating
* whether the mood indicates the corresponding Vn form is an aspect.
*/
export declare function parseMood(cn: string): [mood: Mood, isAspectual: boolean];