1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:37:45 +00:00

LibWeb: Implement QueuingStrategy for Web::Streams::WritableStream

This commit is contained in:
Shannon Booth 2023-06-18 21:58:04 +12:00 committed by Andreas Kling
parent 33f6e5d516
commit 9cb4bf0683
3 changed files with 9 additions and 8 deletions

View file

@ -1,9 +1,9 @@
#import <Streams/QueuingStrategy.idl>
#import <Streams/WritableStreamDefaultWriter.idl>
[Exposed=*, Transferable]
interface WritableStream {
// FIXME: optional QueuingStrategy strategy = {}
constructor(optional object underlyingSink);
constructor(optional object underlyingSink, optional QueuingStrategy strategy = {});
readonly attribute boolean locked;