microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
7 lines (6 loc) • 305 B
TypeScript
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;
}