@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
19 lines (17 loc) • 354 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Interface representing data submitted from a tab.
*/
export interface TabSubmitData {
/**
* Type of the submitted data.
*/
type?: string
/**
* Additional properties of the submitted data.
*/
[properties: string]: unknown
}