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

14 lines (13 loc) 513 B
export type OnboardingVersion = number | undefined; /** * Onboarding components retrieve certain experiments from the backend, * rather than via {@link Core.create()}. These experiments toggle features * within the SDK depending on the onboarding version for that legal entity. * * Differently from Feature Flag Experiments, in this experiments are dynamic * and not flipped on and off in BE/Backoffice. * @param legalEntityId */ export declare const useVersion: () => { onboardingVersion: number; };