@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
4 lines (3 loc) • 372 B
TypeScript
import type { FormVerificationErrors } from '../types/errors/form-verification-errors';
export declare const getSSNType: (formVerifcationErrors: FormVerificationErrors | undefined, existingIdNumber: string | undefined) => "ssn" | "ssnLastFour";
export declare const check4DigitSsnFailed: (formVerifcationErrors: FormVerificationErrors | undefined) => boolean | undefined;