User Auth State contains local User information concerning authentication.

interface UserAuthState {
    accessToken: string;
    email: string;
    id: string;
    refreshToken: string;
}

Properties

accessToken: string
email: string
id: string
refreshToken: string