UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

20 lines (19 loc) 564 B
/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { BotStateMemoryScope } from './botStateMemoryScope'; /** * Memory that's scoped to the current user. */ export declare class UserMemoryScope extends BotStateMemoryScope { protected stateKey: string; /** * Initializes a new instance of the [UserMemoryScope](xref:botbuilder-dialogs.UserMemoryScope) class. */ constructor(); } //# sourceMappingURL=userMemoryScope.d.ts.map