UNPKG

react-isw-webpay

Version:

React integration for Interswitch WebPay payment gateway

8 lines (7 loc) 284 B
import { PaymentRequest, WebPayHookOptions } from '../types'; export declare const useWebPay: () => { initiatePayment: (paymentRequest: PaymentRequest, options?: WebPayHookOptions) => Promise<void>; isLoading: boolean; error: string | null; clearError: () => void; };