quivio-transaction-processor
Version:
React Native hook for Card payment integration with DataCap
11 lines (10 loc) • 384 B
TypeScript
import React from "react";
import { EMVConfig, PaymentContextType } from "./types";
declare const PaymentContext: React.Context<PaymentContextType | undefined>;
declare function PaymentProvider({ children, config, disabled }: {
children: React.ReactNode;
config: EMVConfig;
disabled?: boolean;
}): React.JSX.Element;
export { PaymentProvider };
export { PaymentContext };