UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

11 lines (10 loc) 414 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { MeetingStageSurface } from './meetingStageSurface'; import { MeetingTabIconSurface } from './meetingTabIconSurface'; /** * Type representing a meeting surface, which can be either a stage surface or a tab icon surface. */ export type MeetingSurface = MeetingStageSurface<any> | MeetingTabIconSurface;