import { FormDataReader } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v11.1.0/multipart.ts?p=prototype.stream&s=FormDataReader";
Returns an iterator which will asynchronously yield each part of the form
data. The yielded value is a tuple, where the first element is the name
of the part and the second element is a string
or a FormDataFile
object.
Parameters
optional
options: FormDataReadOptions[src]Returns
AsyncIterableIterator<[string, string | FormDataFile]>[src]