UNPKG

arpabet-and-ipa-convertor-ts

Version:

Typescript code to convert between Arpabet and IPA phonetic transcriptions

9 lines (8 loc) 281 B
export declare class Phoneme { readonly arpabet: string; readonly american: string; readonly english: string; readonly ipa: string; readonly isVowel: boolean; constructor(arpabet: string, american: string, english: string, ipa: string, isVowel: boolean); }