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