microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
23 lines (22 loc) • 656 B
TypeScript
/**
* Defines the pronunciation evaluation granularity; default value is Phoneme.
* Added in version 1.15.0
* @class PronunciationAssessmentGranularity
*/
export declare enum PronunciationAssessmentGranularity {
/**
* Shows the score on the full text, word and phoneme level
* @member PronunciationAssessmentGranularity.Phoneme
*/
Phoneme = 1,
/**
* Shows the score on the full text and word level
* @member PronunciationAssessmentGranularity.Word
*/
Word = 2,
/**
* Shows the score on the full text level only
* @member PronunciationAssessmentGranularity.FullText
*/
FullText = 3
}