@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
17 lines (15 loc) • 495 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents an Adaptive Card, which is a card framework that enables developers to exchange UI content in a common and consistent way.
* @see {@link https://learn.microsoft.com/adaptive-cards/ | Adaptive Cards Documentation}
*/
export interface AdaptiveCard {
/**
* The type of the card, which must always be 'AdaptiveCard'.
*/
type: 'AdaptiveCard'
[key: string]: any
}