mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
28 lines
893 B
Text
28 lines
893 B
Text
#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 [Clamp] long long start, optional [Clamp] 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;
|