chromium/third_party/blink/renderer/modules/webtransport/web_transport_bidirectional_stream.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://wicg.github.io/web-transport/#bidirectionalstream

[ Exposed=(Window,Worker),
  SecureContext,
  ImplementedAs=BidirectionalStream ]
interface WebTransportBidirectionalStream {
  readonly attribute ReadableStream readable;
  readonly attribute WritableStream writable;
};