import { FormData } from "https://deno.land/x/xdg@v10.5.1/vendor/types/deno.d.ts";
Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the XMLHttpRequest.send() method. It uses the same format a form would use if the encoding type were set to "multipart/form-data".
Methods
delete(name: string): void
entries(): IterableIterator<[string, FormDataEntryValue]>
forEach(callback: () => void, thisArg?: any): void
get(name: string): FormDataEntryValue | null
getAll(name: string): FormDataEntryValue[]
has(name: string): boolean
keys(): IterableIterator<string>
values(): IterableIterator<string>
[Symbol.iterator](): IterableIterator<[string, FormDataEntryValue]>