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;