aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/cardView/cardSearchFooterComponent.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

32 lines
No EOL
1,004 B
TypeScript

import type { CardAction } from '../actions/cardAction';
import type { BaseCardComponent } from './baseCardComponent';
/**
* Adaptive Card Extension Search footer component. Represents a container with an image (in the shape of a circle) and text.
*/
export interface CardSearchFooterComponent extends BaseCardComponent {
/**
* Unique component name.
*/
componentName: 'searchFooter';
/**
* Title text to display.
*/
title: string;
/**
* Url to the image to use, should be a square aspect ratio and big enough to fit in the image area.
*/
imageUrl?: string;
/**
* The initials to display in the image area when there is no image.
*/
imageInitials?: string;
/**
* Primary text to display. For example, name of the person for people search.
*/
text: string;
/**
* Action to invoke when the footer is selected.
*/
onSelection?: CardAction;
}
//# sourceMappingURL=cardSearchFooterComponent.d.ts.map