UNPKG

@adyen/adyen-web

Version:

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

32 lines (31 loc) 1.13 kB
import { h } from 'preact'; import UIElement from '../UIElement'; import { CbObjOnBinLookup } from '../internal/SecuredFields/lib/types'; export declare class SecuredFieldsElement extends UIElement { static type: string; static analyticsType: string; protected static defaultProps: { onBinLookup: () => void; brandsConfiguration: {}; }; formatProps(props: any): any; /** * Formats the component data output */ formatData(): { paymentMethod: any; browserInfo: import("../../types").BrowserInfo; }; updateStyles(stylesObj: any): this; setFocusOn(frame: any): this; processBinLookupResponse(binLookupResponse: any): this; dualBrandingChangeHandler(e: Event | string): this; handleUnsupportedCard(errObj: any): this; onBinLookup(obj: CbObjOnBinLookup): void; onBinValue: (callbackObj: import("../internal/SecuredFields/lib/types").CbObjOnBinValue) => void; get isValid(): boolean; get browserInfo(): import("../../types").BrowserInfo; private onFocus; render(): h.JSX.Element; } export default SecuredFieldsElement;