UNPKG

@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.

7 lines (6 loc) 457 B
import type { CountryCode } from '../types/datasets/country-code'; export declare const isEuCountry: (country?: string) => country is CountryCode; export declare const isEeaCountry: (country?: string) => country is CountryCode; export declare const isLowRiskCountry: (country?: string) => country is CountryCode; export declare const isUK: (countryCode?: string) => boolean; export declare const isHkSgCountry: (country?: string) => country is CountryCode;