@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
56 lines (54 loc) • 2.2 kB
JavaScript
;
// 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");
/**
* Defines contents of speech recognizing/recognized event.
* @class SpeechRecognitionEventArgsCustom
*/
var SpeechRecognitionEventArgsCustom = /** @class */ (function (_super) {
__extends(SpeechRecognitionEventArgsCustom, _super);
/**
* Creates and initializes an instance of this class.
* @constructor
* @param {SpeechRecognitionResultCustom} result - The speech recognition result.
* @param {number} offset - The offset.
* @param {string} sessionId - The session id.
*/
function SpeechRecognitionEventArgsCustom(result, offset, sessionId) {
var _this = _super.call(this, offset, sessionId) || this;
_this.privResult = result;
return _this;
}
Object.defineProperty(SpeechRecognitionEventArgsCustom.prototype, "result", {
/**
* Specifies the recognition result.
* @member SpeechRecognitionEventArgs.prototype.result
* @function
* @public
* @returns {SpeechRecognitionResultCustom} the recognition result.
*/
get: function () {
return this.privResult;
},
enumerable: true,
configurable: true
});
return SpeechRecognitionEventArgsCustom;
}(Exports_1.RecognitionEventArgs));
exports.SpeechRecognitionEventArgsCustom = SpeechRecognitionEventArgsCustom;
//# sourceMappingURL=SpeechRecognitionEventArgsCustom.js.map