UNPKG

react-isw-webpay

Version:

React integration for Interswitch WebPay payment gateway

10 lines (9 loc) 281 B
import { PaymentRequest, WebPayHookOptions } from '../types'; interface WebPayModalProps { isOpen: boolean; onClose: () => void; paymentRequest: PaymentRequest; options?: WebPayHookOptions; } export declare const WebPayModal: React.FC<WebPayModalProps>; export {};