Newer
Older
minerva / Userland / Libraries / LibWeb / FileAPI / FileList.idl
@minerva minerva on 13 Jul 232 bytes Initial commit
#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;
};