@devlearn/paystack-react-native
Version:
A Paystack React Native SDK that allows you to build delightful payment experience in your native Android and IOS apps with React Native.
16 lines (15 loc) • 364 B
TypeScript
interface Props {
publicKey: string;
amount: string;
currency: string;
email: string;
firstName?: string;
lastName?: string;
phone?: string;
tranxRef: string;
paymentChannels: string;
passChargeToCustomer?: boolean;
containerStyle?: any;
onPaymentSuccess: (response: any) => void;
}
export { Props };