interface CookieOptions {
    domain?: string;
    httpOnly: boolean;
    maxAge?: number;
    path: string;
    sameSite: "lax" | "strict" | "none";
    secure: boolean;
    transient?: boolean;
}

Properties

domain?: string
httpOnly: boolean
maxAge?: number
path: string
sameSite: "lax" | "strict" | "none"
secure: boolean
transient?: boolean