Skip to main content
Module

x/hono/client/types.ts>ClientResponse

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

Properties

readonly
body: ReadableStream | null
readonly
bodyUsed: boolean
ok: boolean
status: number
statusText: string
headers: Headers
url: string

Methods

redirect(url: string, status: number): Response
clone(): Response
json(): Promise<BlankRecordToNever<T>>
text(): Promise<string>
blob(): Promise<Blob>
formData(): Promise<FormData>
arrayBuffer(): Promise<ArrayBuffer>