@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
17 lines (14 loc) • 333 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { TabResponseCard } from './tabResponseCard'
/**
* Interface representing a collection of tab response cards.
*/
export interface TabResponseCards {
/**
* Array of response cards.
*/
cards: TabResponseCard[]
}