UNPKG

cabbie-sync

Version:
22 lines (20 loc) 385 B
/** * @flow * This file is generated automatically, run npm run build to re-generate. **/ export type MouseButton = 0 | 1 | 2; const MouseButtonEnum = { /* * Left mouse button */ LEFT: (0: 0), /* * Middle mouse button. It is the scroll button on some mouses. */ MIDDLE: (1: 1), /* * Right mouse button */ RIGHT: (2: 2) }; export default MouseButtonEnum;