1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 06:54:58 +00:00
serenity/Userland/Libraries/LibWeb/FileAPI/FileList.idl
2023-11-11 08:51:51 +01:00

8 lines
232 B
Text

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