react-native-auth0
    Preparing search index...

    Interface AuthState<TUser>

    interface AuthState<TUser extends User = User> {
        error: null | BaseError;
        isLoading: boolean;
        user: null | TUser;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    error: null | BaseError

    An object representing the last exception

    isLoading: boolean

    A flag that is true until the state knows that a user is either logged in or not

    user: null | TUser

    The user profile as decoded from the ID token after authentication