mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
15 lines
413 B
Plaintext
15 lines
413 B
Plaintext
#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;
|
|
};
|