Type alias UserRegistrationChallenge

UserRegistrationChallenge: {
    attestation: AttestationConveyancePreference;
    authenticatorSelection: {
        authenticatorAttachment?: AuthenticatorAttachment;
        requireResidentKey: boolean;
        residentKey: ResidentKeyRequirement;
        userVerification: UserVerificationRequirement;
    };
    challenge: string;
    excludeCredentials: AllowCredential[];
    otpUrl: string;
    pubKeyCredParams: {
        alg: number;
        type: "public-key";
    }[];
    rp: {
        id: string;
        name: string;
    };
    supportedCredentialKinds: {
        firstFactor: CredentialKind[];
        secondFactor: CredentialKind[];
    };
    temporaryAuthenticationToken: string;
    user: {
        displayName: string;
        id: string;
        name: string;
    };
}

Type declaration

Generated using TypeDoc