@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
20 lines (17 loc) • 357 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a search result for an Adaptive Card.
*/
export interface AdaptiveCardSearchResult {
/**
* The title of the search result.
*/
title: string;
/**
* The value associated with the search result.
*/
value: string;
}