We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d256f commit bb807b3Copy full SHA for bb807b3
global/index.d.ts
@@ -434,15 +434,17 @@ declare namespace browser.cookies {
434
firstPartyDomain?: string;
435
}): Promise<Cookie[]>;
436
function set(details: {
437
- url: string;
438
- name?: string;
439
domain?: string;
+ expirationDate?: number;
+ firstPartyDomain?: string;
440
+ httpOnly?: boolean;
441
+ name?: string;
442
path?: string;
443
+ sameSite?: SameSiteStatus;
444
secure?: boolean;
- httpOnly?: boolean;
- expirationDate?: number;
445
storeId?: string;
- firstPartyDomain?: string;
446
+ url: string;
447
+ value?: string;
448
}): Promise<Cookie>;
449
function remove(details: {
450
url: string;
0 commit comments