Note

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

Access to this page requires authorization. You can try .

UpdateActivityHandler type

Defines a handler for updating an activity. Used for middleware that needs to intercept or modify activity updates.

type UpdateActivityHandler = (
 context: TurnContext,
 activity: Activity,
 next: () => Promise<void>
) => Promise<void>