Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/fw/service/deps.ts>oak.BodyOptionsContentTypes

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
interface oak.BodyOptionsContentTypes
import { type oak } from "https://deno.land/x/hex@0.6.5/src/fw/service/deps.ts";
const { BodyOptionsContentTypes } = oak;

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.