@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (17 loc) • 322 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a thumbnail URL.
*/
export interface ThumbnailUrl {
/**
* The URL of the thumbnail.
*/
url: string;
/**
* The alternative text for the thumbnail.
*/
alt?: string;
}