mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 00:01:59 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
6 lines
204 B
Text
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;
|
|
};
|