UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

23 lines 817 B
/** * @module botbuilder-dialogs-adaptive */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { Dialog } from 'botbuilder-dialogs'; import { OnActivity } from './onActivity'; /** * Actions triggered when a CommandResult activity is received. */ export declare class OnCommandResultActivity extends OnActivity { static $kind: string; /** * Intiializes a new instance of the [OnCommandResultActivity](xref:botbuilder-dialogs-adaptive.OnCommandResultActivity) class. * * @param actions Optional, list of actions. * @param condition Optional, condition which needs to be met for the actions to be executed. */ constructor(actions?: Dialog[], condition?: string); } //# sourceMappingURL=onCommandResultActivity.d.ts.map