Type Utility for Defining Handlers Outside `HttpApiBuilder.group`

Is there a type utility to define handlers outside of an HttpApiBuilder.group? Something kind of like...

const myHandler: HttpApiHandler<Api, "groupName", "handlerName"> = Effect.fnUntraced(function*() {
  // ...
})
Was this page helpful?