@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
17 lines (14 loc) • 348 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { CardAction } from '@microsoft/agents-activity'
/**
* Represents suggested actions for a messaging extension.
*/
export interface MessagingExtensionSuggestedAction {
/**
* A list of card actions.
*/
actions?: CardAction[]
}