microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
16 lines (15 loc) • 484 B
TypeScript
import { LanguageUnderstandingModelImpl } from "../sdk/LanguageUnderstandingModel.js";
/**
* @class AddedLmIntent
*/
export declare class AddedLmIntent {
modelImpl: LanguageUnderstandingModelImpl;
intentName: string;
/**
* Creates and initializes an instance of this class.
* @constructor
* @param modelImpl - The model.
* @param intentName - The intent name.
*/
constructor(modelImpl: LanguageUnderstandingModelImpl, intentName: string);
}