@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.
16 lines (15 loc) • 522 B
TypeScript
import { type PartialCA } from "../../generate/ca/index.js";
/**
* Parses a non-geminated Ca form into an object.
*
* @param ca The Ca form to be parsed.
* @returns A `PartialCA` object containing the details of the Ca form.
*/
export declare function parseCa(ca: string): PartialCA;
/**
* Parses a geminated Ca form into an object.
*
* @param ca The Ca form to be parsed.
* @returns A `PartialCA` object containing the details of the Ca form.
*/
export declare function parseGeminatedCa(ca: string): PartialCA;