Share via


RouteHandler type

A handler function for routing operations in a specific turn context and state.

type RouteHandler<TState> = (
  context: TurnContext,
  state: TState
) => Promise<void>