UNPKG

@microsoft/agents-activity

Version:

Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.

17 lines (14 loc) 335 B
/** * 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[] }