@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
8 lines (7 loc) • 414 B
TypeScript
import { IConnection } from "../common/Exports";
import { AuthInfo, SynthesizerConfig } from "./Exports";
import { ISynthesisConnectionFactory } from "./ISynthesisConnectionFactory";
export declare class SpeechSynthesisConnectionFactory implements ISynthesisConnectionFactory {
private readonly synthesisUri;
create: (config: SynthesizerConfig, authInfo: AuthInfo, connectionId?: string) => IConnection;
}