UNPKG

@euirim/microsoft-cognitiveservices-speech-sdk

Version:
56 lines (54 loc) 2.19 kB
"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var Exports_1 = require("./Exports"); /** * Translation text result event arguments. * @class TranslationRecognitionEventArgs */ var TranslationRecognitionEventArgs = /** @class */ (function (_super) { __extends(TranslationRecognitionEventArgs, _super); /** * Creates and initializes an instance of this class. * @constructor * @param {TranslationRecognitionResult} result - The translation recognition result. * @param {number} offset - The offset. * @param {string} sessionId - The session id. */ function TranslationRecognitionEventArgs(result, offset, sessionId) { var _this = _super.call(this, offset, sessionId) || this; _this.privResult = result; return _this; } Object.defineProperty(TranslationRecognitionEventArgs.prototype, "result", { /** * Specifies the recognition result. * @member TranslationRecognitionEventArgs.prototype.result * @function * @public * @returns {TranslationRecognitionResult} the recognition result. */ get: function () { return this.privResult; }, enumerable: true, configurable: true }); return TranslationRecognitionEventArgs; }(Exports_1.RecognitionEventArgs)); exports.TranslationRecognitionEventArgs = TranslationRecognitionEventArgs; //# sourceMappingURL=TranslationRecognitionEventArgs.js.map