node-webauthn
    Preparing search index...

    Type Alias RegistrationOptionsJSON

    type RegistrationOptionsJSON = {
        attestation?: AttestationConveyancePreference;
        authenticatorSelection?: AuthenticatorSelectionCriteria;
        challenge: string;
        excludeCredentials?: ReadonlyArray<CredentialDescriptorJSON>;
        extensions?: AuthenticationExtensionsClientInputs;
        pubKeyCredParams: ReadonlyArray<PublicKeyCredentialParameters>;
        rp: PublicKeyCredentialRpEntity;
        timeout?: number;
        user: RegistrationUser;
    }
    Index

    Properties

    attestation?: AttestationConveyancePreference
    authenticatorSelection?: AuthenticatorSelectionCriteria
    challenge: string
    excludeCredentials?: ReadonlyArray<CredentialDescriptorJSON>
    extensions?: AuthenticationExtensionsClientInputs
    pubKeyCredParams: ReadonlyArray<PublicKeyCredentialParameters>
    rp: PublicKeyCredentialRpEntity
    timeout?: number