node-webauthn
    Preparing search index...

    Type Alias AttestationMetadataProvider

    type AttestationMetadataProvider = {
        getEntry?: (
            input: {
                aaguid: string;
                certificates?: readonly string[];
                format: string;
            },
        ) => AttestationMetadataEntry
        | null
        | undefined;
    }
    Index

    Properties

    Properties

    getEntry?: (
        input: {
            aaguid: string;
            certificates?: readonly string[];
            format: string;
        },
    ) => AttestationMetadataEntry
    | null
    | undefined