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