File.idl 366 B

12345678910111213
  1. #import <FileAPI/Blob.idl>
  2. [Exposed=(Window,Worker), Serializable]
  3. interface File : Blob {
  4. constructor(sequence<BlobPart> fileBits, USVString fileName, optional FilePropertyBag options = {});
  5. readonly attribute DOMString name;
  6. readonly attribute long long lastModified;
  7. };
  8. dictionary FilePropertyBag : BlobPropertyBag {
  9. long long lastModified;
  10. };