{"version":3,"sources":["src/typings/chrome/Network/SetCookieOptions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD;;;;;GAKG;AACH,MAAM,CAAC,OAAO,WAAW,gBAAgB;IACvC;;;;;OAKG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;OAKG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;;;;;;OAOG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;;;OAKG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;OAKG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,cAAc,CAAC;IAE1B;;;;;OAKG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;CAC1B","file":"SetCookieOptions.d.ts","sourcesContent":["'use strict';\n\nimport { CookieSameSite } from './CookieSameSite';\nimport { TimeSinceEpoch } from './TimeSinceEpoch';\n\n/**\n * Chrome Network.setCookie() parameters.\n *\n * @export\n * @interface SetCookieOptions\n */\nexport default interface SetCookieOptions {\n  /**\n   * Cookie name.\n   *\n   * @type {string}\n   * @memberof SetCookieOptions\n   */\n  name: string;\n\n  /**\n   * Cookie value.\n   *\n   * @type {string}\n   * @memberof SetCookieOptions\n   */\n  value: string;\n\n  /**\n   * The request-URI to associate with the setting of the cookie.\n   * This value can affect the default domain and path values of\n   * the created cookie.\n   *\n   * @type {string}\n   * @memberof SetCookieOptions\n   */\n  url?: string;\n\n  /**\n   * Cookie domain.\n   *\n   * @type {string}\n   * @memberof SetCookieOptions\n   */\n  domain?: string;\n\n  /**\n   * Cookie path.\n   *\n   * @type {string}\n   * @memberof SetCookieOptions\n   */\n  path?: string;\n\n  /**\n   * True if cookie is secure.\n   *\n   * @type {boolean}\n   * @memberof SetCookieOptions\n   */\n  secure?: boolean;\n\n  /**\n   * True if cookie is http-only.\n   *\n   * @type {boolean}\n   * @memberof SetCookieOptions\n   */\n  httpOnly?: boolean;\n\n  /**\n   * Cookie SameSite type.\n   *\n   * @type {CookieSameSite}\n   * @memberof SetCookieOptions\n   */\n  sameSite?: CookieSameSite;\n\n  /**\n   * Cookie expiration date, session cookie if not set.\n   *\n   * @type {TimeSinceEpoch}\n   * @memberof SetCookieOptions\n   */\n  expires?: TimeSinceEpoch;\n}\n"],"sourceRoot":"../../../../.."}