react-klasha
Version:
This is an reactJS library for implementing klasha payment gateway
9 lines (8 loc) • 348 B
TypeScript
import React from "react";
import { KlashaOptionsProps } from "./types";
interface KlashaConsumerProps extends KlashaOptionsProps {
children: Function;
callBack?: Function;
}
declare const KlashaConsumer: React.ForwardRefExoticComponent<KlashaConsumerProps & React.RefAttributes<KlashaOptionsProps>>;
export default KlashaConsumer;