1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

LibWeb: Implement FileAPI::Blob::stream()

This commit is contained in:
Shannon Booth 2023-06-13 07:36:00 +12:00 committed by Andreas Kling
parent 9f39be6e23
commit bd26d022ac
3 changed files with 9 additions and 0 deletions

View file

@ -9,6 +9,7 @@ interface Blob {
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();
};