auth.provider API
    Preparing search index...

    Interface SessionCsrfConfigSlice

    The session.* slice this module reads. Declared structurally so the helper can be called with a partial config in tests without an AppConfig cast.

    interface SessionCsrfConfigSlice {
        csrf?: { trustedOrigins?: readonly string[]; ttlSeconds?: number };
        domain: string | null;
        name: string;
        sameSite: "lax" | "strict" | "none";
        secret: string;
        secure: boolean;
    }
    Index
    csrf?: { trustedOrigins?: readonly string[]; ttlSeconds?: number }
    domain: string | null
    name: string
    sameSite: "lax" | "strict" | "none"
    secret: string
    secure: boolean