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:
parent
9df2d6ee0f
commit
42c102ecb6
3 changed files with 29 additions and 0 deletions
7
Userland/Libraries/LibWeb/Streams/QueuingStrategy.idl
Normal file
7
Userland/Libraries/LibWeb/Streams/QueuingStrategy.idl
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue