mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:52:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			410 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			410 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <Streams/ReadableStreamBYOBRequest.idl>
 | |
| 
 | |
| // https://streams.spec.whatwg.org/#rbs-controller-class-definition
 | |
| [Exposed=*]
 | |
| interface ReadableByteStreamController {
 | |
|     readonly attribute ReadableStreamBYOBRequest? byobRequest;
 | |
|     readonly attribute unrestricted double? desiredSize;
 | |
| 
 | |
|     undefined close();
 | |
|     undefined error(optional any e);
 | |
|     // FIXME: undefined enqueue(ArrayBufferView chunk);
 | |
| };
 | 
