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

FileList

An object of this type is returned by the files property of the HTML element; this lets you access the list of files selected with the element. It's also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage.

interface FileList {
[index: number]: File;
readonly length: number;
[[Symbol.iterator]](): IterableIterator<File>;
item(index: number): File | null;
}
var FileList: {
prototype: FileList;
new (): FileList;
}
;

§Index Signatures

§
[index: number]: File

§Properties

§
readonly length: number
[src]

§Methods

§
[[Symbol.iterator]](): IterableIterator<File>
[src]
§
item(index: number): File | null
[src]