{"version":3,"sources":["src/common.speech/AddedLmIntent.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AAEnF;;GAEG;AAEH,qBAAa,aAAa;IACf,SAAS,EAAE,8BAA8B,CAAC;IAC1C,UAAU,EAAE,MAAM,CAAC;IAE1B;;;;;OAKG;gBACgB,SAAS,EAAE,8BAA8B,EAAE,UAAU,EAAE,MAAM;CAInF","file":"AddedLmIntent.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n\nimport { LanguageUnderstandingModelImpl } from \"../sdk/LanguageUnderstandingModel\";\n\n/**\n * @class AddedLmIntent\n */\n// tslint:disable-next-line:max-classes-per-file\nexport class AddedLmIntent {\n    public modelImpl: LanguageUnderstandingModelImpl;\n    public intentName: string;\n\n    /**\n     * Creates and initializes an instance of this class.\n     * @constructor\n     * @param modelImpl - The model.\n     * @param intentName - The intent name.\n     */\n    public constructor(modelImpl: LanguageUnderstandingModelImpl, intentName: string) {\n        this.modelImpl = modelImpl;\n        this.intentName = intentName;\n    }\n}\n"]}