UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

15 lines (14 loc) 369 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { Attachment } from '@microsoft/agents-activity'; /** * Represents an attachment for a messaging extension. */ export interface MessagingExtensionAttachment extends Attachment { /** * A preview of the attachment. */ preview?: Attachment; }