Types: AfterRouteHookResponse 
ts
type AfterRouteHookResponse = 
  | CallbackSuccessResponse
  | CallbackPushResponse
  | CallbackRejectResponse;Type for responses from an after route hook, which may indicate different outcomes such as success, push, or reject.
Template 
The type of the routes configuration.