@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
17 lines (14 loc) • 328 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { CardAction } from '@microsoft/agents-activity'
/**
* Interface representing suggested actions for a tab.
*/
export interface TabSuggestedActions {
/**
* Array of card actions.
*/
actions: CardAction[]
}