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