Result of credential operations

interface CredentialResult {
    credentialId?: string;
    deviceInfo?: DeviceInfo;
    error?: string;
    password?: string;
    publicKey?: null | ArrayBuffer;
    success: boolean;
    username?: string;
    webAuthnCredentials?: WebAuthnCredentials;
}

Hierarchy

  • BaseAuthResult
    • CredentialResult

Properties

credentialId?: string
deviceInfo?: DeviceInfo
error?: string
password?: string
publicKey?: null | ArrayBuffer
success: boolean
username?: string
webAuthnCredentials?: WebAuthnCredentials