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

// Copyright 2019 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/#default-reader-class-definition
[
    Exposed=(Window,Worker,Worklet),
    ActiveScriptWrappable
] interface ReadableStreamDefaultReader {
    [CallWith=ScriptState, RaisesException] constructor(ReadableStream stream);
    [CallWith=ScriptState, RaisesException] Promise<ReadableStreamReadResult> read();
    [CallWith=ScriptState, RaisesException] void releaseLock();
};

ReadableStreamDefaultReader includes ReadableStreamGenericReader;