Skip to main content
Go to Latest
interface BodyOptionsContentTypes
import { type BodyOptionsContentTypes } from "https://deno.land/x/oak_sessions@v4.0.0/deps.ts";

When setting the contentTypes property of BodyOptions, provide additional content types which can influence how the body is decoded. This is specifically designed to allow a server to support custom or specialized media types that are not part of the public database.

Properties

optional
bytes: string[]

Content types listed here will always return an Uint8Array.

optional
json: string[]

Content types listed here will be parsed as a JSON string.

optional
form: string[]

Content types listed here will be parsed as form data and return URLSearchParameters as the value of the body.

optional
formData: string[]

Content types listed here will be parsed as from data and return a FormDataBody interface as the value of the body.

optional
text: string[]

Content types listed here will be parsed as text.