UNPKG

react-tap-payment

Version:

ReactJS library for implementing TAP payment gateway

10 lines (9 loc) 336 B
import { InitializePayment, TAPPaymentProps } from './types'; type TAPPaymentContextProps = { config: TAPPaymentProps; initializePayment: InitializePayment; onSuccess: () => void; onClose: () => void; }; declare const TAPPaymentContext: import("react").Context<TAPPaymentContextProps>; export default TAPPaymentContext;