UNPKG

arpabet-and-ipa-convertor-ts

Version:

Typescript code to convert between Arpabet and IPA phonetic transcriptions

17 lines (16 loc) 315 B
declare enum StressType { No = 0, Primary = 1, Secondary = 2 } export declare class Stress { type: StressType; private ipa; static No: Stress; static Primary: Stress; static Secondary: Stress; private constructor(); markIpa(): string; markArpabet(): number; } export {};