MonoCloud Authentication SDK
    Preparing search index...

    The current authentication state.

    interface AuthState {
        error?: Error;
        isAuthenticated: boolean;
        isLoading: boolean;
        session?: MonoCloudSession;
        user?: MonoCloudUser;
    }

    Hierarchy

    Index

    Properties

    error?: Error

    Error encountered during authentication, if any.

    isAuthenticated: boolean

    Flag indicating if the user is authenticated.

    isLoading: boolean

    Flag indicating if the authentication state is still loading.

    The current session, including tokens and the user, if available.

    The authenticated user's information, if available.