UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

27 lines 925 B
/** * @module botbuilder-dialogs-adaptive */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { DialogManager } from 'botbuilder-dialogs'; import { ResourceExplorer } from 'botbuilder-dialogs-declarative'; /** * The key to set or get resource explorer from turn state. */ export declare const resourceExplorerKey: unique symbol; /** * Extension methods for resource explorer. */ export declare class ResourceExtensions { /** * Register ResourceExplorer into DialogManager. * * @param dialogManager The dialog manager to add resource explorer to. * @param resourceExplorer The resource explorer to be added. * @returns dialog manager with resource explorer. */ static useResourceExplorer(dialogManager: DialogManager, resourceExplorer: ResourceExplorer): DialogManager; } //# sourceMappingURL=resourceExtensions.d.ts.map