pay-sdk-react
Version:
A cross-platform payment SDK for React, supporting Alipay, WeChat Pay, PayPal, Stripe, Payssion, and Airwallex, compatible with H5, PC, and App environments.
13 lines (12 loc) • 415 B
TypeScript
import Stripe from "./stripe";
import StripePopup from "./stripe-popup";
import StripeButton from "./stripe-button";
import StripeModal from "./stripe-modal";
export * from "./interface";
type StripeComponentType = typeof Stripe & {
Button: typeof StripeButton;
Popup: typeof StripePopup;
Modal: typeof StripeModal;
};
declare const StripeComponent: StripeComponentType;
export default StripeComponent;