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) 363 B
export declare const downloadFile: (base64: string, filename: string) => Promise<void>; export declare const base64ToBlob: (base64: string, mimeType?: string) => Blob; /** * Utility to save Blob|File reference to disk as a new file * * @param fileData - * @param filename - */ export declare const saveBlobAsFile: (fileData: Blob, filename: string) => void;