Skip to main content
Module

x/hono/mod.ts>ClientRequestOptions

Fast, Lightweight, Web-standards
Extremely Popular
Go to Latest
type alias ClientRequestOptions
import { type ClientRequestOptions } from "https://deno.land/x/hono@v4.0.3/mod.ts";

Type Parameters

optional
T = unknown
definition: keyof T extends never ? { headers?: Record<string, string>; fetch?: fetch | HonoRequest; } : { headers: T; fetch?: fetch | HonoRequest; }