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

BodyVendorJSONContext

import type { BodyVendorJSONContext } from "https://raw.githubusercontent.com/worker-tools/middleware/master/index.ts";
interface BodyVendorJSONContext <J = any> {
accepted: `application/${string}+json`;
body: J;
json: J;
}

§Type Parameters

§
J = any
[src]

§Properties

§
accepted: `application/${string}+json`
[src]
§
body: J
[src]
§
json: J
[src]