@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
19 lines (16 loc) • 413 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { CardAction } from '@microsoft/agents-activity'
/**
* Represents a Card Image.
*/
export interface CardImage {
/** The URL of the image. */
url: string
/** The alternative text for the image. */
alt?: string
/** The action to be performed when the image is tapped. */
tap?: CardAction
}