UNPKG

@adyen/adyen-web

Version:

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

25 lines (24 loc) 660 B
import { h } from 'preact'; import UIElement from '../UIElement'; import { BankTransferProps, BankTransferState } from './types'; export declare class BankTransferElement extends UIElement<BankTransferProps> { static type: string; static defaultProps: { showPayButton: boolean; showEmailAddress: boolean; }; state: BankTransferState; get isValid(): boolean; /** * Formats the component data output */ formatData(): { shopperEmail: string; paymentMethod: { type: string; }; }; private handleRef; render(): h.JSX.Element; } export default BankTransferElement;