UNPKG

@euirim/microsoft-cognitiveservices-speech-sdk

Version:
42 lines (40 loc) 1.8 kB
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. import { SpeechRecognitionResult } from "./Exports"; /** * Translation text result. * @class TranslationRecognitionResult */ export class TranslationRecognitionResult extends SpeechRecognitionResult { /** * Creates and initializes an instance of this class. * @constructor * @param {Translations} translations - The translations. * @param {string} resultId - The result id. * @param {ResultReason} reason - The reason. * @param {string} text - The recognized text. * @param {number} duration - The duration. * @param {number} offset - The offset into the stream. * @param {string} errorDetails - Error details, if provided. * @param {string} json - Additional Json, if provided. * @param {PropertyCollection} properties - Additional properties, if provided. */ constructor(translations, resultId, reason, text, duration, offset, errorDetails, json, properties) { super(resultId, reason, text, duration, offset, errorDetails, json, properties); this.privTranslations = translations; } /** * Presents the translation results. Each item in the dictionary represents * a translation result in one of target languages, where the key is the name * of the target language, in BCP-47 format, and the value is the translation * text in the specified language. * @member TranslationRecognitionResult.prototype.translations * @function * @public * @returns {Translations} the current translation map that holds all translations requested. */ get translations() { return this.privTranslations; } } //# sourceMappingURL=TranslationRecognitionResult.js.map