microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
27 lines (25 loc) • 1.08 kB
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.SpeechSynthesisRequestInputType = void 0;
/**
* Defines the input type of speech synthesis request.
* @enum SpeechSynthesisRequestInputType
*/
var SpeechSynthesisRequestInputType;
(function (SpeechSynthesisRequestInputType) {
/**
* Plain text input.
*/
SpeechSynthesisRequestInputType[SpeechSynthesisRequestInputType["Text"] = 1] = "Text";
/**
* SSML (Speech Synthesis Markup Language) input.
*/
SpeechSynthesisRequestInputType[SpeechSynthesisRequestInputType["SSML"] = 2] = "SSML";
/**
* Text stream input, for streaming text to the synthesizer.
*/
SpeechSynthesisRequestInputType[SpeechSynthesisRequestInputType["TextStream"] = 3] = "TextStream";
})(SpeechSynthesisRequestInputType = exports.SpeechSynthesisRequestInputType || (exports.SpeechSynthesisRequestInputType = {}));
//# sourceMappingURL=SpeechSynthesisRequestInputType.js.map