AgentNotificationHandler type
Definizione del tipo per una funzione del gestore di notifica dell'agente. Gestisce le attività di notifica dell'agente con dati di notifica fortemente tipizzato.
type AgentNotificationHandler<TState> = (
turnContext: TurnContext,
turnState: TState,
agentNotificationActivity: AgentNotificationActivity
) => Promise<void>