UNPKG

taipa

Version:

Taiwanese morphological parsing library

8 lines (7 loc) 537 B
import { TonalMutationLexeme } from '../change/lexeme'; /** Mutates the initial of the following syllable. */ export declare function mutateInitialOfFollowingSyllable(word: string): TonalMutationLexeme; /** Mutates the final of the preceding syllable. */ export declare function mutateFinalConsonantOfPrecedingSyllable(word: string): TonalMutationLexeme; /** Mutates the final of the preceding word. */ export declare function mutateFinalOfPrecedingWord(preceding: string, following: string): import("./phraseme").TonalMutationPhraseme;