ladybird/Libraries/LibWeb/FileAPI/FileList.idl

9 lines
232 B
Text
Raw Normal View History

2023-11-08 11:04:56 -07:00
#import <FileAPI/File.idl>
// https://w3c.github.io/FileAPI/#filelist-section
[Exposed=(Window,Worker), Serializable]
interface FileList {
getter File? item(unsigned long index);
readonly attribute unsigned long length;
};