UNPKG

@adyen/kyc-components

Version:

`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar

10 lines (9 loc) 424 B
import type { BaseFormFieldProps } from '../../core/hooks/useForm/types'; import type { CountryCode } from '../../core/models/country-code'; export interface CountryOfGoverningLawFieldSchema { countryOfGoverningLaw?: CountryCode; } export interface CountryOfGoverningLawFieldProps extends BaseFormFieldProps<CountryOfGoverningLawFieldSchema> { allowedCountries?: readonly CountryCode[]; country?: CountryCode; }