@adyen/adyen-web
Version:
[](https://www.npmjs.com/package/@adyen/adyen-web)
17 lines (16 loc) • 484 B
TypeScript
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;