bunway
    Preparing search index...

    Interface CookieOptions

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

    Properties

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