UNPKG

arpabet-and-ipa-convertor-ts

Version:

Typescript code to convert between Arpabet and IPA phonetic transcriptions

11 lines (10 loc) 289 B
import { Syllable } from './syllable'; export declare class Word { private syllables; private stressCount; addSyllable(syllable: Syllable): void; toArpabet(): string; toAmericanPhoneticAlphabet(): string; toEnglishPhoneticAlphabet(): string; toIPA(): string; }