UNPKG

@voice-ping/cognitive-services-speech

Version:

VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft

7 lines (6 loc) 296 B
import { IConnection } from "../common/Exports"; import { AuthInfo } from "./IAuthentication"; import { SynthesizerConfig } from "./SynthesizerConfig"; export interface ISynthesisConnectionFactory { create(config: SynthesizerConfig, authInfo: AuthInfo, connectionId?: string): IConnection; }