UNPKG

arpabet-and-ipa-convertor-ts

Version:

Typescript code to convert between Arpabet and IPA phonetic transcriptions

8 lines (7 loc) 184 B
declare enum ConvertPriority { American = 0, English = 1, IPA = 2 } export declare function toArpabet(input: string, priority?: ConvertPriority): string | null; export {};