botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
24 lines • 888 B
TypeScript
/**
* @module botbuilder-dialogs-adaptive
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { DialogContext } from 'botbuilder-dialogs';
import { BeginDialog } from './beginDialog';
/**
* Internal `BeginDialog` action which dynamically binds x.schema/x.dialog to invoke the x.dialog resource with properties as the options.
*/
export declare class DynamicBeginDialog extends BeginDialog {
static $kind: string;
/**
* @protected
* Evaluates expressions in options.
* @param dc The [DialogContext](xref:botbuilder-dialogs.DialogContext) for the current turn of conversation.
* @param _options The options to bind.
* @returns An object with the binded options
*/
protected bindOptions(dc: DialogContext, _options: object): object;
}
//# sourceMappingURL=dynamicBeginDialog.d.ts.map