UNPKG

react-ravepayment

Version:

This is a reactJS library for implementing rave payment gateway

9 lines (8 loc) 279 B
import React from 'react'; interface RaveContext { initializePayment: (onSuccess: Function, onClose: Function) => void; onClose: Function; onSuccess: Function; } declare const RavePaymentContext: React.Context<RaveContext>; export default RavePaymentContext;