cabbie-sync
Version:
A synchronous webdriver client
40 lines (32 loc) • 1.22 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.LogSource = undefined;
var _flowRuntime = require('flow-runtime');
var _flowRuntime2 = _interopRequireDefault(_flowRuntime);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
*
* This file is generated automatically, run npm run build to re-generate.
**/
var LogSource = exports.LogSource = _flowRuntime2.default.type('LogSource', _flowRuntime2.default.union(_flowRuntime2.default.string('client'), _flowRuntime2.default.string('driver'), _flowRuntime2.default.string('browser'), _flowRuntime2.default.string('server')));
var LogSourceEnum = {
/*
* Source type of the log-entry - 'client'
*/
CLIENT: _flowRuntime2.default.string('client').assert('client'),
/*
* Source type of the log-entry - 'driver'
*/
DRIVER: _flowRuntime2.default.string('driver').assert('driver'),
/*
* Source type of the log-entry - 'browser'
*/
BROWSER: _flowRuntime2.default.string('browser').assert('browser'),
/*
* Source type of the log-entry - 'server'
*/
SERVER: _flowRuntime2.default.string('server').assert('server')
};
exports.default = LogSourceEnum;