cabbie-sync
Version:
A synchronous webdriver client
19 lines (13 loc) • 660 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HttpMethod = 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 HttpMethod = exports.HttpMethod = _flowRuntime2.default.type('HttpMethod', _flowRuntime2.default.union(_flowRuntime2.default.string('GET'), _flowRuntime2.default.string('POST'), _flowRuntime2.default.string('PUT'), _flowRuntime2.default.string('DELETE')));