Sign up result interface

interface SignUpResult {
    did?: string;
    error?: string;
    message?: string;
    pub?: string;
    success: boolean;
    username?: string;
    userPub?: string;
    wallet?: any;
}

Properties

did?: string
error?: string
message?: string
pub?: string
success: boolean
username?: string
userPub?: string
wallet?: any