ladybird/Userland/Libraries/LibWeb/FileAPI/Blob.idl

28 lines
832 B
Plaintext
Raw Normal View History

2023-11-08 21:04:56 +03:00
#import <Streams/ReadableStream.idl>
// https://w3c.github.io/FileAPI/#blob-section
[Exposed=(Window,Worker), Serializable]
2022-07-10 19:31:17 +03:00
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();
2022-07-10 19:31:17 +03:00
[NewObject] Promise<USVString> text();
[NewObject] Promise<ArrayBuffer> arrayBuffer();
};
enum EndingType { "transparent", "native" };
dictionary BlobPropertyBag {
DOMString type = "";
EndingType endings = "transparent";
};
typedef (BufferSource or Blob or USVString) BlobPart;