cabbie-sync
Version:
A synchronous webdriver client
19 lines (13 loc) • 984 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HttpResponse = 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 HttpResponse = exports.HttpResponse = _flowRuntime2.default.type("HttpResponse", _flowRuntime2.default.object(_flowRuntime2.default.property("statusCode", _flowRuntime2.default.number()), _flowRuntime2.default.property("headers", _flowRuntime2.default.object(_flowRuntime2.default.indexer("key", _flowRuntime2.default.string(), _flowRuntime2.default.string()))), _flowRuntime2.default.property("body", _flowRuntime2.default.ref("Buffer")), _flowRuntime2.default.property("getBody", _flowRuntime2.default.function(_flowRuntime2.default.return(_flowRuntime2.default.string())))));