botframework-schema
Version:
Activity schema for the Microsoft Bot Framework.
17 lines (15 loc) • 333 B
text/typescript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
/**
* Properties for the image or icon rendered in a card view.
*/
export interface CardImage {
/**
* The URL to display as image or icon.
*/
url: string;
/**
* The alt text.
*/
altText?: string;
}