botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
20 lines (17 loc) • 384 B
text/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>;
}