2023-11-08 15:04:56 -03:00
|
|
|
#import <FileAPI/File.idl>
|
|
|
|
|
|
2023-10-25 12:27:19 -03:00
|
|
|
// https://w3c.github.io/FileAPI/#filelist-section
|
2022-10-04 00:10:39 -03:00
|
|
|
[Exposed=(Window,Worker), Serializable]
|
|
|
|
|
interface FileList {
|
2023-10-25 12:27:19 -03:00
|
|
|
getter File? item(unsigned long index);
|
|
|
|
|
readonly attribute unsigned long length;
|
2022-10-04 00:10:39 -03:00
|
|
|
};
|