interface AuthResult {
    credentialId?: string;
    did?: string;
    error?: string;
    password?: string;
    success: boolean;
    username?: string;
    userPub?: string;
    wallet?: any;
}

Properties

credentialId?: string
did?: string
error?: string
password?: string
success: boolean
username?: string
userPub?: string
wallet?: any