taipa
Version:
Taiwanese morphological parsing library
6 lines (5 loc) • 370 B
TypeScript
import { TonalInfectionLexeme } from './lexeme';
/** Infect the following syllable with nasalization. */
export declare function infectFollowingSyllable(word: string): TonalInfectionLexeme;
/** Infect the following word with nasalization. */
export declare function infectFollowingWord(preceding: string, following: string): import("./phraseme").TonalInfectionPhraseme;