blob: 9b89a0a0def3d0cfe5aba38fe24077b3e077c309 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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<void> read();
[CallWith=ScriptState, RaisesException] void releaseLock();
};
ReadableStreamDefaultReader includes ReadableStreamGenericReader;