You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| path | string | The cookie's path. Defaults to `'/'`. |
14
-
| url | string | The cookie's URL.|
15
-
| expires | number | The cookie's expiration date as the number of seconds since the UNIX epoch. Defaults to `-1`, meaning a session cookie.|
16
-
| httpOnly | bool | A cookie is inaccessible to the JavaScript [document.cookie](https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie) API when this property is `true`. Defaults to `false`. |
17
-
| secure | bool | The cookie's secure flag. Defaults to `false`.|
18
-
| sameSite | string | The cookie's same site flag. It can be one of `'Strict'`, `'Lax'`, and `'None'`.|
| name | string |`""`|The cookie's name. Required. |
11
+
| value | string |`""`|The cookie's value. Required. |
12
+
| domain | string |`""`|The cookie's domain. |
13
+
| path | string |`'/'`|The cookie's path. |
14
+
| url | string |`""`|The cookie's URL. |
15
+
| expires | number |`-1`|The cookie's expiration date as the number of seconds since the UNIX epoch. `-1` means a session cookie. |
16
+
| httpOnly | bool |`false`|A cookie is inaccessible to the JavaScript [document.cookie](https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie) API when this property is `true`. |
0 commit comments