UNPKG

@euirim/microsoft-cognitiveservices-speech-sdk

Version:
21 lines (19 loc) 547 B
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. /** * @class AddedLmIntent */ // tslint:disable-next-line:max-classes-per-file export 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; } } //# sourceMappingURL=AddedLmIntent.js.map