/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-proxyfetch-a415589c08e2-proxyfetch-s0683-c0000.md
`ProxyFetch` - hono-docs
ProxyFetch Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt proxyfetch Summary The type of proxy()...
ProxyFetch
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#proxyfetch
Summary
The type of proxy() is defined as ProxyFetch and is as follows ```ts interface ProxyRequestInit extends Omit { raw?: Request customFetch?: (request: Request) => Promise strictConnectionProcessing?: boolean headers?: | HeadersInit | [...
Content
The type of proxy() is defined as ProxyFetch and is as follows
interface ProxyRequestInit extends Omit<RequestInit, 'headers'> {
raw?: Request
customFetch?: (request: Request) => Promise<Response>
strictConnectionProcessing?: boolean
headers?:
| HeadersInit
| [string, string][]
| Record<RequestHeader, string | undefined>
| Record<string, string | undefined>
}
interface ProxyFetch {
(
input: string | URL | Request,
init?: ProxyRequestInit
): Promise<Response>
}