UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

19 lines (17 loc) 298 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents a view of an attachment. */ export interface AttachmentView { /** * The ID of the view. */ viewId: string; /** * The size of the view. */ size: number; }