mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 16:28:48 +00:00
12 lines
461 B
Text
12 lines
461 B
Text
#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;
|
|
};
|