Skip to main content
Module

x/oak/body.ts>BodyOptionsContentTypes

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
interface BodyOptionsContentTypes
import { type BodyOptionsContentTypes } from "https://deno.land/x/oak@v12.5.0/body.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.