UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

19 lines (17 loc) 285 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Represents a media URL. */ export interface MediaUrl { /** * The URL of the media. */ url: string; /** * The profile of the media. */ profile?: string; }