botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
26 lines • 917 B
TypeScript
/**
* @module botbuilder-dialogs
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { ClassMemoryScope } from './classMemoryScope';
import { DialogContext } from '../../dialogContext';
import { Dialog } from '../../dialog';
/**
* DialogClassMemoryScope maps "dialogClass" -> dc.parent.activeDialog.properties
*/
export declare class DialogClassMemoryScope extends ClassMemoryScope {
/**
* Initializes a new instance of the [DialogClassMemoryScope](xref:botbuilder-dialogs.DialogClassMemoryScope) class.
*/
constructor();
/**
* @protected
* @param dc The [DialogContext](xref:botbuilder-dialogs.DialogContext) object for this turn.
* @returns The current [Dialog](xref:botbuilder-dialogs.Dialog).
*/
protected onFindDialog(dc: DialogContext): Dialog;
}
//# sourceMappingURL=dialogClassMemoryScope.d.ts.map