Skip to content

Commit

Permalink
Merge branch 'main' into signInWithRedirect-error
Browse files Browse the repository at this point in the history
  • Loading branch information
israx committed Dec 1, 2023
2 parents e79b924 + ef20ad8 commit 3152ce4
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
import { CookieSerializeOptions } from 'cookie';

export namespace CookieStorage {
export type SetCookieOptions = Pick<
CookieSerializeOptions,
'domain' | 'expires' | 'httpOnly' | 'maxAge' | 'sameSite' | 'secure'
export type SetCookieOptions = Partial<
Pick<
CookieSerializeOptions,
'domain' | 'expires' | 'httpOnly' | 'maxAge' | 'sameSite' | 'secure'
>
>;

export type Cookie = {
Expand Down

0 comments on commit 3152ce4

Please sign in to comment.