UNPKG

cabbie-sync

Version:
26 lines (25 loc) 600 B
/** * @flow * This file is generated automatically, run npm run build to re-generate. **/ export type TimeOutType = 'script' | 'async' | 'page load' | 'implicit'; const TimeOutTypeEnum = { /* * Synchronous script execution timeout */ SCRIPT: ('script': 'script'), /* * Asynchronous script execution timeout */ ASYNC_SCRIPT: ('async': 'async'), /* * Page load timeout */ PAGE_LOAD: ('page load': 'page load'), /* * Implicit wait timeout. * Implicit waits are applied for all requests. */ IMPLICIT: ('implicit': 'implicit') }; export default TimeOutTypeEnum;