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) 200 B
import type { StateCodeUS } from '../types/datasets/state-code'; type PerState<T> = Partial<Record<StateCodeUS, T>>; export type PerStateWithDefault<T> = PerState<T> & { default: T; }; export {};