// Copyright 2021 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. | |
// 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; |