import { type BodyOptions } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v11.1.0/mod.ts?p=prototype.respond&s=BodyOptions";
Options which can be used when accessing the .body()
of a request.
Properties
optional
limit: number[src]When reading a non-streaming body, set a limit whereby if the content length is greater then the limit or not set, reading the body will throw.
This is to prevent malicious requests where the body exceeds the capacity of the server. Set the limit to 0 to allow unbounded reads. The default is 10 Mib.
Instead of utilizing the content type of the request, attempt to parse the
body as the type specified. The value has to be of BodyType
.
optional
contentTypes: BodyOptionsContentTypes[src]A map of extra content types to determine how to parse the body.