cabbie-sync
Version:
A synchronous webdriver client
26 lines (24 loc) • 571 B
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/
export type LogSource = 'client' | 'driver' | 'browser' | 'server';
const LogSourceEnum = {
/*
* Source type of the log-entry - 'client'
*/
CLIENT: ('client': 'client'),
/*
* Source type of the log-entry - 'driver'
*/
DRIVER: ('driver': 'driver'),
/*
* Source type of the log-entry - 'browser'
*/
BROWSER: ('browser': 'browser'),
/*
* Source type of the log-entry - 'server'
*/
SERVER: ('server': 'server')
};
export default LogSourceEnum;