botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
23 lines • 787 B
TypeScript
/**
* @module botbuilder-dialogs-adaptive
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Dialog } from 'botbuilder-dialogs';
import { OnDialogEvent } from './onDialogEvent';
/**
* Triggered when all actions and ambiguity events have been processed.
*/
export declare class OnEndOfActions extends OnDialogEvent {
static $kind: string;
/**
* Creates a new `OnEndOfActions` instance.
*
* @param actions (Optional) The actions to add to the plan when the rule constraints are met.
* @param condition (Optional) The condition which needs to be met for the actions to be executed.
*/
constructor(actions?: Dialog[], condition?: string);
}
//# sourceMappingURL=onEndOfActions.d.ts.map