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

7 lines
204 B
Plaintext

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