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

Properties

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