mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
13 lines
366 B
Text
13 lines
366 B
Text
#import <FileAPI/Blob.idl>
|
|
|
|
[Exposed=(Window,Worker), Serializable]
|
|
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;
|
|
};
|