Interface ScreenMembersOnPasskeyEnrollmentLocal

interface ScreenMembersOnPasskeyEnrollmentLocal {
    captchaImage: null | string;
    captchaProvider: null | string;
    captchaSiteKey: null | string;
    getPublicKey: (() => null | {
        authenticatorSelection: {
            residentKey: string;
            userVerification: string;
        };
        challenge: string;
        pubKeyCredParams: [{
            alg: number;
            type: string;
        }];
        rp: {
            id: string;
            name: string;
        };
        user: {
            displayName: string;
            id: string;
            name: string;
        };
    });
    isCaptchaAvailable: boolean;
    name: string;
    getCaptchaConfig(): null | CaptchaContext;
    getScreenData(): null | Record<string, string>;
    getScreenLinks(): null | Record<string, string>;
    getScreenTexts(): null | Record<string, string>;
}

Hierarchy (view full)

Properties

captchaImage: null | string
captchaProvider: null | string
captchaSiteKey: null | string
getPublicKey: (() => null | {
    authenticatorSelection: {
        residentKey: string;
        userVerification: string;
    };
    challenge: string;
    pubKeyCredParams: [{
        alg: number;
        type: string;
    }];
    rp: {
        id: string;
        name: string;
    };
    user: {
        displayName: string;
        id: string;
        name: string;
    };
})
isCaptchaAvailable: boolean
name: string

Methods