@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
15 lines (14 loc) • 341 B
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[];
}