Skip to main content
Module

x/uuid/lib/lib.deno_runtime.d.ts>domTypes.FormData

Deprecated! UUID is part of the deno standard library
Latest
interface domTypes.FormData
implements DomIterable<string, FormDataEntryValue>
import { type domTypes } from "https://deno.land/x/uuid@v0.1.2/lib/lib.deno_runtime.d.ts";
const { FormData } = domTypes;

Methods

append(
name: string,
value: string | Blob,
fileName?: string,
): void
delete(name: string): void
get(name: string): FormDataEntryValue | null
getAll(name: string): FormDataEntryValue[]
has(name: string): boolean
set(
name: string,
value: string | Blob,
fileName?: string,
): void