UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

16 lines (14 loc) 379 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Represents the base structure of a meeting notification. * @template T - The type of the value. */ export interface MeetingNotificationBase<T> { /** The type of the notification. */ type: string; /** The value associated with the notification. */ value: T; }