Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

SendActivitiesHandler type

Defines a handler for processing and sending activities. Used for middleware that needs to intercept or modify activities being sent.

type SendActivitiesHandler = (
 context: TurnContext,
 activities: Activity[],
 next: () => Promise<ResourceResponse[]>
) => Promise<ResourceResponse[]>