deno / 1.23.2 / ~ / file.html /

File

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

class File extends Blob {
constructor(
fileBits: BlobPart[],
fileName: string,
options?: FilePropertyBag,
);
readonly lastModified : number;
readonly name : string;
}

Extends

Blob

Constructors

new File( fileBits: BlobPart[] , fileName: string , options?: FilePropertyBag)

Properties

lastModified : number
name : string

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/File