hz-zhhq-app/node_modules/cookie-storage/lib/cookie-options.d.ts

8 lines
180 B
TypeScript
Raw Normal View History

2025-01-22 10:53:47 +08:00
export interface CookieOptions {
path?: string | null;
domain?: string | null;
expires?: Date | null;
secure?: boolean;
sameSite?: "Strict" | "Lax" | "None";
}