Share via


AgentHandler type

Type definition for agent handler function

type AgentHandler = (
  context: TurnContext,
  next: () => Promise<void>
) => Promise<any>