Skip to main content
Module

x/hono/client/index.ts>ClientRequest

Fast, Lightweight, Web-standards
Extremely Popular
Go to Latest
type alias ClientRequest
import { type ClientRequest } from "https://deno.land/x/hono@v3.12.5/client/index.ts";

Type Parameters

S extends Schema
definition: [M in keyof S]: S[M] extends { input: infer R; output: infer O; } ? R extends object ? HasRequiredKeys<R> extends true ? (args: R, options?: ClientRequestOptions) => Promise<ClientResponse<O>> : (args?: R, options?: ClientRequestOptions) => Promise<ClientResponse<O>> : never : never & { $url: (arg?: S[keyof S] extends { input: infer R; } ? R extends { param: infer P; } ? { param: P; } : { } : { }) => URL; }