2022-07-24 16:32:18 -03:00
|
|
|
#import <FileAPI/Blob.idl>
|
|
|
|
|
|
2023-02-25 06:27:38 -03:00
|
|
|
[Exposed=(Window,Worker), Serializable, UseNewAKString]
|
2022-07-24 16:32:18 -03:00
|
|
|
interface File : Blob {
|
|
|
|
|
constructor(sequence<BlobPart> fileBits, USVString fileName, optional FilePropertyBag options = {});
|
|
|
|
|
|
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
|
readonly attribute long long lastModified;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
dictionary FilePropertyBag : BlobPropertyBag {
|
|
|
|
|
long long lastModified;
|
|
|
|
|
};
|