@novo-learning/novo-sdk
Version:
SDK for the Novolanguage Speech Analysis API
15 lines (14 loc) • 416 B
TypeScript
import { PhoneSet } from './phone-set';
export declare type PhoneInventoryItem = {
readonly label: string;
readonly ipa: string;
readonly isVowel: boolean;
readonly baseLabel: string;
readonly exampleWord: string;
};
export declare const phoneInventoryData: {
[key in PhoneSet]: readonly PhoneInventoryItem[];
};
export declare const voiceLessPhones: {
[key in PhoneSet]: Set<string>;
};