Skip to content

Commit

Permalink
fix(ember-cookies): add partitioned field to WriteOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
BobrImperator committed Dec 27, 2024
1 parent d755120 commit 1a9e53c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/ember-cookies/src/services/cookies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export type WriteOptions = {
sameSite?: 'Strict' | 'Lax' | 'None';
signed?: never;
httpOnly?: boolean;
partitioned?: boolean;
} & ({ expires?: Date; maxAge?: never } | { maxAge?: number; expires?: never });

type ClearOptions = {
Expand Down

0 comments on commit 1a9e53c

Please sign in to comment.