mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-30 19:37:21 +02:00
Implements https://w3c.github.io/FileAPI/#dom-blob-bytes. (cherry picked from commit c5f1e478838092dcf6e4ad8ee0bfef32a47e2d68)
29 lines
877 B
Plaintext
29 lines
877 B
Plaintext
#import <Streams/ReadableStream.idl>
|
|
|
|
// https://w3c.github.io/FileAPI/#blob-section
|
|
[Exposed=(Window,Worker), Serializable]
|
|
interface Blob {
|
|
constructor(optional sequence<BlobPart> blobParts, optional BlobPropertyBag options = {});
|
|
|
|
readonly attribute unsigned long long size;
|
|
readonly attribute DOMString type;
|
|
|
|
// slice Blob into byte-ranged chunks
|
|
Blob slice(optional long long start, optional long long end, optional DOMString contentType);
|
|
|
|
// read from the Blob.
|
|
[NewObject] ReadableStream stream();
|
|
[NewObject] Promise<USVString> text();
|
|
[NewObject] Promise<ArrayBuffer> arrayBuffer();
|
|
[NewObject] Promise<Uint8Array> bytes();
|
|
};
|
|
|
|
enum EndingType { "transparent", "native" };
|
|
|
|
dictionary BlobPropertyBag {
|
|
DOMString type = "";
|
|
EndingType endings = "transparent";
|
|
};
|
|
|
|
typedef (BufferSource or Blob or USVString) BlobPart;
|