@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
21 lines (18 loc) • 442 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { SuggestedActions } from '@microsoft/agents-activity'
/**
* Represents the agent configuration for authentication.
*/
export interface AgentConfigAuth {
/**
* Optional suggested actions for the agent.
*/
suggestedActions?: SuggestedActions
/**
* The type of configuration, which is 'auth'.
*/
type: 'auth'
}