FileList.idl 232 B

12345678
  1. #import <FileAPI/File.idl>
  2. // https://w3c.github.io/FileAPI/#filelist-section
  3. [Exposed=(Window,Worker), Serializable]
  4. interface FileList {
  5. getter File? item(unsigned long index);
  6. readonly attribute unsigned long length;
  7. };