8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
|
export interface CookieOptions {
|
||
|
|
path?: string | null;
|
||
|
|
domain?: string | null;
|
||
|
|
expires?: Date | null;
|
||
|
|
secure?: boolean;
|
||
|
|
sameSite?: "Strict" | "Lax" | "None";
|
||
|
|
}
|