chromium/third_party/blink/renderer/core/streams/readable_byte_stream_controller.idl

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://streams.spec.whatwg.org/#rbs-controller-class-definition
[
    Exposed=(Window,Worker,Worklet)
] interface ReadableByteStreamController {
    readonly attribute ReadableStreamBYOBRequest? byobRequest;
    readonly attribute double? desiredSize;

    [CallWith=ScriptState, RaisesException] void close();
    [CallWith=ScriptState, RaisesException] void enqueue(ArrayBufferView chunk);
    [CallWith=ScriptState] void error(optional any e);
};