UNPKG

@adyen/adyen-web

Version:

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

18 lines (17 loc) 417 B
import { UIElementProps } from '../types'; export type UpiPaymentData = { paymentMethod: { type: 'upi_qr' | 'upi_collect'; virtualPaymentAddress?: string; }; }; export declare enum UpiMode { Vpa = "vpa", QrCode = "qrCode" } export interface UPIElementProps extends UIElementProps { defaultMode: UpiMode; paymentData?: string; qrCodeData?: string; brandLogo?: string; }