Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

File

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

interface File extends Blob {
readonly lastModified: number;
readonly name: string;
readonly webkitRelativePath: string;
}
var File: {
prototype: File;
new (
fileBits: BlobPart[],
fileName: string,
options?: FilePropertyBag,
): File;
}
;

§Extends

§Properties

§
readonly lastModified: number
[src]
§
readonly name: string
[src]
§
readonly webkitRelativePath: string
[src]