Interface WebAuthnAuthenticationVerificationParams

interface WebAuthnAuthenticationVerificationParams {
    authenticatorAttachment: AuthenticatorAttachment;
    clientExtensionResults: object;
    id: string;
    rawId: string;
    response: {
        authenticatorData: string;
        clientDataJSON: string;
        signature: string;
        userHandle: string;
    };
    type: string;
}

Properties

authenticatorAttachment: AuthenticatorAttachment
clientExtensionResults: object
id: string
rawId: string
response: {
    authenticatorData: string;
    clientDataJSON: string;
    signature: string;
    userHandle: string;
}
type: string