mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
14 lines
413 B
Text
14 lines
413 B
Text
#import <FileAPI/Blob.idl>
|
|
|
|
// https://w3c.github.io/FileAPI/#file-section
|
|
[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;
|
|
};
|