Share via


ApplicationEventHandler type

Event handler function type for application events.

type ApplicationEventHandler<TState> = (
  context: TurnContext,
  state: TState
) => Promise<boolean>