feat: improve Cookie interface type safety

This commit is contained in:
2026-01-22 19:47:37 -05:00
parent 844e566b57
commit 7af1be3977

View File

@@ -24,7 +24,7 @@ interface Cookie {
sameSite?: "strict" | "lax" | "none" | "unspecified";
session?: boolean;
expirationDate?: number;
partitionKey?: any;
partitionKey?: Record<string, unknown>;
storeId?: string;
}