UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

18 lines (16 loc) 472 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Interface representing the surface of a meeting stage. * @template T - The type of the content. */ export interface MeetingStageSurface<T> { /** The surface type, which is always 'meetingStage'. */ surface: 'meetingStage'; /** The content type, which is always 'task'. */ contentType: 'task'; /** The content of the meeting stage. */ content: T; }