ReadableByteStreamController.idl 400 B

123456789101112
  1. #import <Streams/ReadableStreamBYOBRequest.idl>
  2. // https://streams.spec.whatwg.org/#rbs-controller-class-definition
  3. [Exposed=*]
  4. interface ReadableByteStreamController {
  5. readonly attribute ReadableStreamBYOBRequest? byobRequest;
  6. readonly attribute unrestricted double? desiredSize;
  7. undefined close();
  8. undefined error(optional any e);
  9. undefined enqueue(ArrayBufferView chunk);
  10. };