blob: dc74b493835c77129e9e40d4412ce3b438a9a15a [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/#dictdef-readablewritablepair
dictionary ReadableWritablePair {
required ReadableStream readable;
required WritableStream writable;
};