microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
25 lines (23 loc) • 688 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.AddedLmIntent = void 0;
/**
* @class AddedLmIntent
*/
// eslint-disable-next-line max-classes-per-file
class AddedLmIntent {
/**
* Creates and initializes an instance of this class.
* @constructor
* @param modelImpl - The model.
* @param intentName - The intent name.
*/
constructor(modelImpl, intentName) {
this.modelImpl = modelImpl;
this.intentName = intentName;
}
}
exports.AddedLmIntent = AddedLmIntent;
//# sourceMappingURL=AddedLmIntent.js.map
;