UNPKG

taipa

Version:

Taiwanese morphological parsing library

13 lines (12 loc) 729 B
import { TonalUninsertionLexeme } from '../change/lexeme'; /** * Uninserts an initial m, n, or ng from syllable ~ay if the preceding syllable has a final m, n, or ng. * @param word A word whose second syllable is may, nay, ngay, ma, na, nga, maf, naf, or ngaf. The word has at least 2 syllables for the second one to be uninserted an initial. */ export declare function uninsertFromFollowingSyllable(word: string): TonalUninsertionLexeme; /** * Uninsert an initial from the enclitic. * @param preceding The preceding word * @param following The following word. The enclitic. */ export declare function uninsertFromFollowingWord(preceding: string, following: string): import("../change/phraseme").TonalUninsertionPhraseme;