botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
18 lines • 435 B
TypeScript
/**
* @module botbuilder-dialogs
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Activity } from 'botbuilder-core';
/**
* A class with dialog arguments for a SkillDialog.
*/
export interface BeginSkillDialogOptions {
/**
* The Activity to send to the skill.
*/
activity: Partial<Activity>;
}
//# sourceMappingURL=beginSkillDialogOptions.d.ts.map