botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
53 lines • 1.06 kB
JavaScript
"use strict";
/**
* @module botbuilder-dialogs
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScopePath = void 0;
/**
* Defines paths for the available scopes.
*/
class ScopePath {
}
exports.ScopePath = ScopePath;
/**
* User memory scope root path.
*/
ScopePath.user = 'user';
/**
* Conversation memory scope root path.
*/
ScopePath.conversation = 'conversation';
/**
* Dialog memory scope root path.
*/
ScopePath.dialog = 'dialog';
/**
* DialogClass memory scope root path.
*/
ScopePath.dialogClass = 'dialogClass';
/**
* DialogContext memory scope root path.
*/
ScopePath.dialogContext = 'dialogContext';
/**
* This memory scope root path.
*/
ScopePath.this = 'this';
/**
* Class memory scope root path.
*/
ScopePath.class = 'class';
/**
* Settings memory scope root path.
*/
ScopePath.settings = 'settings';
/**
* Turn memory scope root path.
*/
ScopePath.turn = 'turn';
//# sourceMappingURL=scopePath.js.map