type alias ClientRequestOptionsimport { type ClientRequestOptions } from "https://dotland.deno.dev/x/hono@v4.2.8/client/types.ts"; Type ParametersoptionalT = unknowndefinition: keyof T extends never ? { headers?: Record<string, string> | (() => Record<string, string> | Promise<Record<string, string>>); fetch?: fetch | HonoRequest; } : { headers: T | (() => T | Promise<T>); fetch?: fetch | HonoRequest; }