microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
31 lines (29 loc) • 1.37 kB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.PronunciationAssessmentGranularity = void 0;
/**
* Defines the pronunciation evaluation granularity; default value is Phoneme.
* Added in version 1.15.0
* @class PronunciationAssessmentGranularity
*/
var PronunciationAssessmentGranularity;
(function (PronunciationAssessmentGranularity) {
/**
* Shows the score on the full text, word and phoneme level
* @member PronunciationAssessmentGranularity.Phoneme
*/
PronunciationAssessmentGranularity[PronunciationAssessmentGranularity["Phoneme"] = 1] = "Phoneme";
/**
* Shows the score on the full text and word level
* @member PronunciationAssessmentGranularity.Word
*/
PronunciationAssessmentGranularity[PronunciationAssessmentGranularity["Word"] = 2] = "Word";
/**
* Shows the score on the full text level only
* @member PronunciationAssessmentGranularity.FullText
*/
PronunciationAssessmentGranularity[PronunciationAssessmentGranularity["FullText"] = 3] = "FullText";
})(PronunciationAssessmentGranularity = exports.PronunciationAssessmentGranularity || (exports.PronunciationAssessmentGranularity = {}));
//# sourceMappingURL=PronunciationAssessmentGranularity.js.map
;