cookie-es 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -202,7 +202,7 @@ interface SetCookie {
|
|
|
202
202
|
/**
|
|
203
203
|
* Indicates a cookie ought not to be sent along with cross-site requests
|
|
204
204
|
*/
|
|
205
|
-
sameSite?:
|
|
205
|
+
sameSite?: true | false | "lax" | "strict" | "none" | undefined;
|
|
206
206
|
[key: string]: unknown;
|
|
207
207
|
}
|
|
208
208
|
|
package/dist/index.d.mts
CHANGED
|
@@ -202,7 +202,7 @@ interface SetCookie {
|
|
|
202
202
|
/**
|
|
203
203
|
* Indicates a cookie ought not to be sent along with cross-site requests
|
|
204
204
|
*/
|
|
205
|
-
sameSite?:
|
|
205
|
+
sameSite?: true | false | "lax" | "strict" | "none" | undefined;
|
|
206
206
|
[key: string]: unknown;
|
|
207
207
|
}
|
|
208
208
|
|
package/dist/index.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ interface SetCookie {
|
|
|
202
202
|
/**
|
|
203
203
|
* Indicates a cookie ought not to be sent along with cross-site requests
|
|
204
204
|
*/
|
|
205
|
-
sameSite?:
|
|
205
|
+
sameSite?: true | false | "lax" | "strict" | "none" | undefined;
|
|
206
206
|
[key: string]: unknown;
|
|
207
207
|
}
|
|
208
208
|
|