microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
24 lines (23 loc) • 827 B
TypeScript
import { IPrimaryLanguage, ITranslations } from "../Exports.js";
export interface ITranslationHypothesis {
Duration: number;
Offset: number;
PrimaryLanguage?: IPrimaryLanguage;
Text: string;
Translation: ITranslations;
}
export declare class TranslationHypothesis implements ITranslationHypothesis {
private privTranslationHypothesis;
private constructor();
static fromJSON(json: string, baseOffset: number): TranslationHypothesis;
static fromTranslationResponse(translationHypothesis: {
SpeechHypothesis: ITranslationHypothesis;
}, baseOffset: number): TranslationHypothesis;
get Duration(): number;
get Offset(): number;
get Text(): string;
get Translation(): ITranslations;
get Language(): string;
asJson(): string;
private mapTranslationStatus;
}