Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JSONRequestInit

import type { JSONRequestInit } from "https://raw.githubusercontent.com/worker-tools/json-fetch/master/index.ts";
type JSONRequestInit = {
body?: JSONBodyInit | null;
}
& Omit<RequestInit, "body">;

§Type

§
{
body?: JSONBodyInit | null;
}
& Omit<RequestInit, "body">
[src]