UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

16 lines (15 loc) 377 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Represents the base details of a meeting. */ export interface MeetingDetailsBase { /** The unique identifier of the meeting. */ id: string; /** The URL to join the meeting. */ joinUrl: string; /** The title of the meeting. */ title: string; }