cabbie-sync
Version:
A synchronous webdriver client
22 lines (20 loc) • 561 B
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/
export type BrowserOrientation = 'landscape' | 'portrait';
/*
* Browser orientaton is typically used for mobile devices to track whether the device
* is in landscape or portrait mode.
*/
const BrowserOrientationEnum = {
/*
* Landscape orientation of the device
*/
ORIENTATION_LANDSCAPE: ('landscape': 'landscape'),
/*
* Portrait orientation of the device
*/
ORIENTATION_PORTRAIT: ('portrait': 'portrait')
};
export default BrowserOrientationEnum;