UNPKG

@adyen/adyen-web

Version:

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

17 lines (16 loc) 484 B
import { h } from 'preact'; import UIElement from '../UIElement'; import { UPIElementProps, UpiMode, UpiPaymentData } from './types'; declare class UPI extends UIElement<UPIElementProps> { static type: string; private useQrCodeVariant; protected static defaultProps: { defaultMode: UpiMode; }; get isValid(): boolean; formatData(): UpiPaymentData; private onUpdateMode; private renderContent; render(): h.JSX.Element; } export default UPI;