microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
19 lines (18 loc) • 399 B
TypeScript
/**
* Defines the input type of speech synthesis request.
* @enum SpeechSynthesisRequestInputType
*/
export declare enum SpeechSynthesisRequestInputType {
/**
* Plain text input.
*/
Text = 1,
/**
* SSML (Speech Synthesis Markup Language) input.
*/
SSML = 2,
/**
* Text stream input, for streaming text to the synthesizer.
*/
TextStream = 3
}