We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8889f64 commit 4e9252fCopy full SHA for 4e9252f
1 file changed
src/types/scriptcat.d.ts
@@ -294,6 +294,10 @@ declare namespace GMTypes {
294
[key: string]: string | boolean | number | undefined;
295
};
296
297
+ interface CookieDetailsPartitionKeyType {
298
+ topLevelSite?: string;
299
+ }
300
+
301
interface CookieDetails {
302
url?: string;
303
name?: string;
@@ -304,6 +308,7 @@ declare namespace GMTypes {
304
308
session?: boolean;
305
309
httpOnly?: boolean;
306
310
expirationDate?: number;
311
+ partitionKey?: CookieDetailsPartitionKeyType;
307
312
}
313
314
interface Cookie {
0 commit comments