UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

19 lines (17 loc) 321 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Represents an image in an O365 connector card. */ export interface O365ConnectorCardImage { /** * The URL of the image. */ image?: string; /** * The title of the image. */ title?: string; }