react-klasha
Version:
This is an reactJS library for implementing klasha payment gateway
9 lines (8 loc) • 329 B
TypeScript
/// <tx_ref types="react" />
import { KlashaOptionsProps } from "./types";
interface KlashaProviderProps extends KlashaOptionsProps {
children: JSX.Element;
callBack: Function;
}
declare const KlashaProvider: ({ children, callBack, ...others }: KlashaProviderProps) => JSX.Element;
export default KlashaProvider;