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.

11 lines (10 loc) 442 B
import type { ParsingAdjunct } from "../../generate/adjunct/parsing.js"; /** * Builds a parsing adjunct. * * @param word The word to be built. * @returns Either a parsed `ParsingAdjunct` indicating a success, or * `undefined` indicating a tokenization failure. Throws if the adjunct was * successfully tokenized but had another error in it. */ export declare function buildParsingAdjunct(word: string): ParsingAdjunct | undefined;