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

11 lines (10 loc) 371 B
import type { Mask } from './maskTypes'; /** * Takes a formatted value and converts it back into a pure value by stripping the non-input / * non-included characters in a given {@link Mask}. * * This is the inverse of {@link matchAgainstMask}. * * @see matchAgainstMask */ export declare const displayValueToPureValue: (displayValue: string, mask: Mask) => string;