UNPKG

@voice-ping/cognitive-services-speech

Version:

VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft

17 lines (16 loc) 624 B
import { PropertyCollection } from "../sdk/Exports"; import { SpeechServiceConfig } from "./Exports"; export declare enum SynthesisServiceType { Standard = 0, Custom = 1 } export declare class SynthesizerConfig { private privSynthesisServiceType; private privSpeechServiceConfig; private privParameters; constructor(speechServiceConfig: SpeechServiceConfig, parameters: PropertyCollection); get parameters(): PropertyCollection; get synthesisServiceType(): SynthesisServiceType; set synthesisServiceType(value: SynthesisServiceType); get SpeechServiceConfig(): SpeechServiceConfig; }