bunway
    Preparing search index...

    Interface SessionOptions

    interface SessionOptions {
        cookie?: {
            httpOnly?: boolean;
            maxAge?: number;
            path?: string;
            sameSite?: "strict" | "lax" | "none";
            secure?: boolean;
        };
        genid?: () => string;
        name?: string;
        resave?: boolean;
        rolling?: boolean;
        saveUninitialized?: boolean;
        secret: string;
        store?: SessionStore;
    }
    Index

    Properties

    cookie?: {
        httpOnly?: boolean;
        maxAge?: number;
        path?: string;
        sameSite?: "strict" | "lax" | "none";
        secure?: boolean;
    }
    genid?: () => string
    name?: string
    resave?: boolean
    rolling?: boolean
    saveUninitialized?: boolean
    secret: string
    store?: SessionStore