@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
20 lines (17 loc) • 352 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a meeting tab icon surface.
*/
export interface MeetingTabIconSurface {
/**
* The type of surface.
*/
surface: 'meetingTabIcon';
/**
* The tab entity ID associated with the surface.
*/
tabEntityId?: string;
}