blob: fe6869ceb13eaa9245e47c8c3f119a0053f23033 [file] [log] [blame]
// Copyright 2020 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/#byob-reader-class-definition
[
Exposed=(Window,Worker,Worklet)
] interface ReadableStreamBYOBReader {
[CallWith=ScriptState, RaisesException] constructor(ReadableStream stream);
[CallWith=ScriptState, RaisesException] Promise<ReadableStreamBYOBReadResult> read(ArrayBufferView view);
[CallWith=ScriptState, RaisesException] void releaseLock();
};
ReadableStreamBYOBReader includes ReadableStreamGenericReader;