Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/ext/web/lib.deno_web.d.ts>File

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface File
implements Blob
import { type File } from "https://deno.land/x/deno@v1.39.0/ext/web/lib.deno_web.d.ts";

Provides information about files and allows JavaScript in a web page to access their content.

Properties

readonly
lastModified: number
readonly
name: string
variable File
import { File } from "https://deno.land/x/deno@v1.39.0/ext/web/lib.deno_web.d.ts";

Provides information about files and allows JavaScript in a web page to access their content.

type

{ readonly prototype: File; new (
fileBits: BlobPart[],
fileName: string,
options?: FilePropertyBag,
): File; }