cabbie-sync
Version:
A synchronous webdriver client
22 lines (16 loc) • 1.17 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Cookie = 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.
**/
/*
* Cookies are represented by plain objects of this type. You can set/get them using the CookieStorage object.
*/
var Cookie = exports.Cookie = _flowRuntime2.default.type("Cookie", _flowRuntime2.default.object(_flowRuntime2.default.property("name", _flowRuntime2.default.string(), true), _flowRuntime2.default.property("value", _flowRuntime2.default.string(), true), _flowRuntime2.default.property("path", _flowRuntime2.default.string(), true), _flowRuntime2.default.property("domain", _flowRuntime2.default.string(), true), _flowRuntime2.default.property("httpOnly", _flowRuntime2.default.boolean(), true), _flowRuntime2.default.property("secure", _flowRuntime2.default.boolean(), true), _flowRuntime2.default.property("expiry", _flowRuntime2.default.number(), true)));