Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hono/client/types.ts>InferResponseType

Ultrafast web framework for the Edge
Extremely Popular
Go to Latest
type alias InferResponseType
import { type InferResponseType } from "https://deno.land/x/hono@v3.0.0-rc.12/client/types.ts";
definition: T extends Record<MethodName, infer R> ? R extends () => Promise<ClientResponse<infer O>> ? O : never : never