ladybird/Userland/Libraries/LibWeb/FileAPI/FileList.idl

7 lines
204 B
Text
Raw Normal View History

// https://w3c.github.io/FileAPI/#filelist-section
[Exposed=(Window,Worker), Serializable]
interface FileList {
getter File? item(unsigned long index);
readonly attribute unsigned long length;
};