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

LibWeb: Add IDL definition for Web::Streams::QueuingStrategy

This commit is contained in:
Shannon Booth 2023-06-18 21:21:34 +12:00 committed by Andreas Kling
parent 9df2d6ee0f
commit 42c102ecb6
3 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,7 @@
callback QueuingStrategySize = unrestricted double (any chunk);
// https://streams.spec.whatwg.org/#dictdef-queuingstrategy
dictionary QueuingStrategy {
unrestricted double highWaterMark;
QueuingStrategySize size;
};