Files
ladybird/Libraries/LibWeb/FileAPI/FileList.idl
2024-11-10 12:50:45 +01:00

9 lines
232 B
Plaintext

#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;
};