mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
8 lines
232 B
Text
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;
|
|
};
|