@auth0/auth0-angular
    Preparing search index...

    Interface PasskeyCredentialResponse

    Serialized credential response from the platform WebAuthn API. All binary fields (rawId, clientDataJSON, etc.) must be base64url-encoded strings.

    interface PasskeyCredentialResponse {
        authenticatorAttachment?: string;
        clientExtensionResults?: Record<string, unknown>;
        id: string;
        rawId: string;
        response: {
            attestationObject?: string;
            authenticatorData?: string;
            clientDataJSON: string;
            signature?: string;
            userHandle?: string;
        };
        type: string;
    }
    Index

    Properties

    authenticatorAttachment?: string
    clientExtensionResults?: Record<string, unknown>
    id: string
    rawId: string
    response: {
        attestationObject?: string;
        authenticatorData?: string;
        clientDataJSON: string;
        signature?: string;
        userHandle?: string;
    }
    type: string