Hyperlinkv0.8.0-beta.28

HttpApiHyperlink

export interface HttpApiHyperlinkConfig<
  _ApiId extends string,
  _Groups extends HttpApiGroup.Constraint,
  Name extends string = string,
> {
  readonly name: Name;
  readonly baseUrl?: URL | string | undefined;
  readonly transformClient?:
    | ((client: HttpClient.HttpClient) => HttpClient.HttpClient)
    | undefined;
  readonly transformResponse?:
    | ((effect: Effect.Effect<unknown, unknown, unknown>) => Effect.Effect<unknown, unknown, unknown>)
    | undefined;
  readonly concurrency?: number;
}