@paypal/react-paypal-js
Version:
React components for the PayPal JS SDK
7 lines (6 loc) • 344 B
TypeScript
import { RegistryHookReturnType } from "./hooks";
import type { PayPalCardFieldsComponent } from "@paypal/paypal-js";
export type PayPalCardFieldsContextType = {
cardFieldsForm: PayPalCardFieldsComponent | null;
} & RegistryHookReturnType;
export declare const PayPalCardFieldsContext: import("react").Context<PayPalCardFieldsContextType>;