chromium/third_party/blink/renderer/modules/websockets/websocket_open_info.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://github.com/ricea/websocketstream-explainer/blob/master/README.md
// TODO(ricea): Add standard link when there is one.

dictionary WebSocketOpenInfo {
  ReadableStream readable;
  WritableStream writable;
  DOMString extensions;
  DOMString protocol;
};