botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
21 lines • 516 B
JavaScript
/**
* @module botbuilder-dialogs
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ThisPath = void 0;
/**
* Defines path passed to the active dialog.
*/
class ThisPath {
}
exports.ThisPath = ThisPath;
/**
* The options that were passed to the active dialog via options argument of BeginDialog.
*/
ThisPath.options = 'this.options';
//# sourceMappingURL=thisPath.js.map
;