UNPKG

@adyen/adyen-web

Version:

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

19 lines (18 loc) 436 B
import { UIElementProps } from '../types'; export interface BankTransferProps extends UIElementProps { reference?: string; /** * Show/hide email address field * @default true */ showEmailAddress?: boolean; } export interface BankTransferState extends UIElementProps { data: { shopperEmail?: string; }; isValid: boolean; } export interface BankTransferSchema { shopperEmail?: string; }