feat: improve Cookie interface type safety
This commit is contained in:
@@ -24,7 +24,7 @@ interface Cookie {
|
|||||||
sameSite?: "strict" | "lax" | "none" | "unspecified";
|
sameSite?: "strict" | "lax" | "none" | "unspecified";
|
||||||
session?: boolean;
|
session?: boolean;
|
||||||
expirationDate?: number;
|
expirationDate?: number;
|
||||||
partitionKey?: any;
|
partitionKey?: Record<string, unknown>;
|
||||||
storeId?: string;
|
storeId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user