chromium/third_party/blink/renderer/modules/serial/serial_output_signals.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://wicg.github.io/serial

dictionary SerialOutputSignals {
  // DTR (Data Terminal Ready)
  boolean dataTerminalReady;
  // RTS (Request to Send)
  boolean requestToSend;
  // BRK (Break), implemented as "brk" because "break" is a C++ keyword
  [ImplementedAs=brk] boolean break;
};