microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
20 lines (18 loc) • 754 B
JavaScript
;
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
Object.defineProperty(exports, "__esModule", { value: true });
exports.SecondPassRescoringMode = void 0;
/**
* Second pass rescoring type
*/
var SecondPassRescoringMode;
(function (SecondPassRescoringMode) {
SecondPassRescoringMode["None"] = "None";
SecondPassRescoringMode["Voice"] = "Voice";
SecondPassRescoringMode["Dictation"] = "Dictation";
SecondPassRescoringMode["Conversation"] = "Conversation";
})(SecondPassRescoringMode = exports.SecondPassRescoringMode || (exports.SecondPassRescoringMode = {}));
//# sourceMappingURL=SecondPassRescoringMode.js.map