UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

25 lines (22 loc) 442 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AttachmentView } from './attachmentView' /** * Represents information about an attachment. */ export interface AttachmentInfo { /** * The name of the attachment. */ name: string; /** * The type of the attachment. */ type: string; /** * The views of the attachment. */ views: AttachmentView[]; }