UNPKG

microsoft-cognitiveservices-speech-sdk

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