microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
14 lines (13 loc) • 471 B
TypeScript
import { SynthesisStatus } from "../Exports.js";
export interface ITranslationSynthesisEnd {
SynthesisStatus?: SynthesisStatus;
FailureReason?: string;
Status?: SynthesisStatus;
}
export declare class TranslationSynthesisEnd implements ITranslationSynthesisEnd {
private privSynthesisEnd;
private constructor();
static fromJSON(json: string): TranslationSynthesisEnd;
get SynthesisStatus(): SynthesisStatus;
get FailureReason(): string;
}