mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
f1d69d789b
This adds the scaffolding of TransformStream so we can start implementing the necessary abstract operations for it.
13 lines
461 B
Plaintext
13 lines
461 B
Plaintext
#import <Streams/QueuingStrategy.idl>
|
|
#import <Streams/ReadableStream.idl>
|
|
#import <Streams/WritableStream.idl>
|
|
|
|
// https://streams.spec.whatwg.org/#transformstream
|
|
[Exposed=*, Transferable]
|
|
interface TransformStream {
|
|
constructor(optional object transformer, optional QueuingStrategy writableStrategy = {}, optional QueuingStrategy readableStrategy = {});
|
|
|
|
readonly attribute ReadableStream readable;
|
|
readonly attribute WritableStream writable;
|
|
};
|