Skip to main content
Module

x/create_react_app/deps.ts>oak.FormDataFile

Create React App with Deno
Latest
type alias oak.FormDataFile
import { type oak } from "https://deno.land/x/create_react_app@v0.1.2/deps.ts";
const { FormDataFile } = oak;

A representation of a file that has been read from a form data body.

definition: { content?: Uint8Array; contentType: string; filename?: string; name: string; originalName: string; }