UNPKG

@adyen/adyen-web

Version:

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

23 lines (22 loc) 588 B
import { h } from 'preact'; import UIElement from '../UIElement'; interface BacsElementData { paymentMethod: { type: string; holderName: string; bankAccountNumber: string; bankLocationId: string; }; shopperEmail: string; } declare class BacsElement extends UIElement { static type: string; protected static defaultProps: { showFormInstruction: boolean; }; formatData(): BacsElementData; get isValid(): boolean; payButton: (props: any) => h.JSX.Element; render(): h.JSX.Element; } export default BacsElement;