@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
13 lines (11 loc) • 353 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the types of events that can occur during a turn in the application.
*
* - `beforeTurn`: Triggered before the turn starts.
* - `afterTurn`: Triggered after the turn ends.
*/
export type TurnEvents = 'beforeTurn' | 'afterTurn'