@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
15 lines (14 loc) • 343 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Activity } from './activity';
/**
* Represents expected replies in a conversation.
*/
export interface ExpectedReplies {
/**
* List of activities representing the expected replies.
*/
activities: Activity[];
}