Skip to main content
Module

x/hono/mod.ts>ClientRequestOptions

Web Framework built on Web Standards
Extremely Popular
Go to Latest
type alias ClientRequestOptions
import { type ClientRequestOptions } from "https://deno.land/x/hono@v4.2.7/mod.ts";

Type Parameters

optional
T = unknown
definition: 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; }