ladybird/Userland/Libraries/LibWeb/FileAPI/FileList.idl
2023-10-25 19:45:41 +02:00

6 lines
204 B
Text

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