Holds the user information along with the sign in details.

interface AuthUser {
    signInDetails?: CognitoAuthSignInDetails;
    userId: string;
    username: string;
}

Hierarchy (view full)

Properties

signInDetails?: CognitoAuthSignInDetails
userId: string
username: string