UNPKG

@adyen/adyen-web

Version:

[![npm](https://img.shields.io/npm/v/@adyen/adyen-web.svg)](https://www.npmjs.com/package/@adyen/adyen-web)

13 lines (12 loc) 376 B
import { DecodeObject } from '../components/types'; export declare const NOT_BASE64_ERROR = "not base64"; export declare const BASE64_MALFORMED_URI_ERROR = "malformed URI sequence"; /** * @internal */ declare const base64: { decode: (pData: string) => DecodeObject; encode: (pData: any) => string; isBase64: (pDataStr: any) => boolean; }; export default base64;