microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
25 lines (24 loc) • 738 B
TypeScript
import { SynthesisResult, VoiceInfo } from "./Exports.js";
/**
* Defines result of speech synthesis.
* @class SynthesisVoicesResult
* Added in version 1.20.0
*/
export declare class SynthesisVoicesResult extends SynthesisResult {
private privVoices;
/**
* Creates and initializes an instance of this class.
* @constructor
* @param requestId - result id for request.
* @param json - json payload from endpoint.
*/
constructor(requestId: string, json: any, errorDetails: string);
/**
* The list of voices
* @member SynthesisVoicesResult.prototype.voices
* @function
* @public
* @returns {VoiceInfo[]} List of synthesized voices.
*/
get voices(): VoiceInfo[];
}