UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

19 lines (18 loc) 558 B
/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ export * from './botStateMemoryScope'; export * from './classMemoryScope'; export * from './conversationMemoryScope'; export * from './dialogClassMemoryScope'; export * from './dialogContextMemoryScope'; export * from './dialogMemoryScope'; export * from './memoryScope'; export * from './settingsMemoryScope'; export * from './thisMemoryScope'; export * from './turnMemoryScope'; export * from './userMemoryScope';