igniteui-react-core
Version:
Ignite UI React Core.
19 lines (18 loc) • 962 B
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "./type";
export var MouseButton = /*@__PURE__*/ (function (MouseButton) {
MouseButton[MouseButton["Left"] = 0] = "Left";
MouseButton[MouseButton["Middle"] = 1] = "Middle";
MouseButton[MouseButton["Right"] = 2] = "Right";
MouseButton[MouseButton["Unkown"] = 3] = "Unkown";
return MouseButton;
})({});
/**
* @hidden
*/
export let MouseButton_$type = /*@__PURE__*/ markEnum('MouseButton', 'Left,0|Middle,1|Right,2|Unkown,3');