blob: 6c1550df49b08c3d81f661c4ab437294a23d7279 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO(b/199452030): Fix duplication with runtime_loaded_test_util.js
/**
* Object containing common key modifiers: shift, alt, and ctrl.
*
* @typedef {{
* shift: (boolean|undefined),
* alt: (boolean|undefined),
* ctrl: (boolean|undefined),
* }}
*/
export let KeyModifiers;