mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:52:45 +00:00 
			
		
		
		
	 f1d69d789b
			
		
	
	
		f1d69d789b
		
	
	
	
	
		
			
			This adds the scaffolding of TransformStream so we can start implementing the necessary abstract operations for it.
		
			
				
	
	
		
			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;
 | |
| };
 |