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

    Interface PasskeyCreationOptions

    Public key credential creation options returned by signup challenges.

    interface PasskeyCreationOptions {
        authenticatorSelection?: {
            residentKey?: string;
            userVerification?: string;
        };
        challenge: string;
        pubKeyCredParams: { alg: number; type: string }[];
        rp: { id: string; name: string };
        timeout?: number;
        user: { displayName: string; id: string; name: string };
    }
    Index

    Properties

    authenticatorSelection?: { residentKey?: string; userVerification?: string }
    challenge: string
    pubKeyCredParams: { alg: number; type: string }[]
    rp: { id: string; name: string }
    timeout?: number
    user: { displayName: string; id: string; name: string }