Skip to main content
Module

x/dfetch/types.ts>DFetchRequestConfig

Promise based HTTP client for Deno inspired by axios.
Latest
type alias DFetchRequestConfig
import { type DFetchRequestConfig } from "https://deno.land/x/dfetch@0.1.9/types.ts";
definition: DFetchConfig & { url?: string; baseURL?: string; method?:
| `${HttpMethods}`
| Uppercase<`${HttpMethods}`>
| Capitalize<`${HttpMethods}`>
; data?: Data; }