botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
24 lines • 736 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.AtAtPathResolver = void 0;
/**
* @module botbuilder-dialogs
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
const aliasPathResolver_1 = require("./aliasPathResolver");
/**
* Maps @@ => turn.recognized.entitites.xxx array.
*/
class AtAtPathResolver extends aliasPathResolver_1.AliasPathResolver {
/**
* Initializes a new instance of the [AtAtPathResolver](xref:botbuilder-dialogs.AtAtPathResolver) class.
*/
constructor() {
super('@@', 'turn.recognized.entities.');
}
}
exports.AtAtPathResolver = AtAtPathResolver;
//# sourceMappingURL=atAtPathResolver.js.map
;