cabbie-sync
Version:
A synchronous webdriver client
22 lines (20 loc) • 385 B
Flow
/**
* @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;