1/** 2 * @license 3 * Copyright The Closure Library Authors. 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7goog.provide('goog.events.MouseEvents'); 8 9 10/** 11 * Mapping of mouse event names to underlying browser event names. 12 * @typedef {{ 13 * MOUSEDOWN: string, 14 * MOUSEUP: string, 15 * MOUSECANCEL: string, 16 * MOUSEMOVE: string, 17 * MOUSEOVER: string, 18 * MOUSEOUT: string, 19 * MOUSEENTER: string, 20 * MOUSELEAVE: string, 21 * }} 22 */ 23goog.events.MouseEvents; 24 25