Sporades SDK API
    Preparing search index...

    Type Alias AuthState

    Current Sporades auth state in the browser.

    Every visitor receives a real Anonymous session. isGuest remains true until that session is linked to a provider such as email or Google.

    type AuthState = {
        displayName: string;
        email: string | null;
        isAuthenticated: boolean;
        isGuest: boolean;
        picture: string | null;
        provider: string;
        userId: string;
    }
    Index
    displayName: string
    email: string | null
    isAuthenticated: boolean
    isGuest: boolean
    picture: string | null
    provider: string
    userId: string