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.
20 lines (19 loc) • 1.7 kB
TypeScript
export type { PaypalButtonProps, PaypalButtonRef, CreateOrderPaypalFn, PaypalSecretMap, } from './Paypal/interface';
export { PaypalButton } from './Paypal';
export type { BasesStripeProps, StripeProps, StripePopupProps, StripePopupRef, StripeButtonProps, StripeButtonRef, CreateOrderStripeFn, StripeModalRef, } from './Stripe/interface';
export { default as Stripe } from './Stripe';
export type { AirwallexProps, AirwallexPopupProps, AirwallexPopupRef, AirwallexButtonProps, AirwallexButtonRef, CreateOrderAirwallexEmbeddedFn, CreateOrderAirwallexRedirectFn, AirwallexModalProps, AirwallexModalRef, } from './Airwallex/interface';
export { default as Airwallex } from './Airwallex';
export type { PayssionButtonProps, PayssionButtonRef, CreateOrderPayssionFn, PayssionSecretMap, } from './Payssion/interface';
export { PayssionButton } from './Payssion';
export type { MWeChatButtonProps, MWeChatButtonRef, CreateOrderMWeChatFn, MWeChatFormData, } from './MWeChat/interface';
export { MWechatButton } from './MWeChat';
export type { MAlipayButtonProps, MAlipayButtonRef, CreateOrderMAlipayFn, MAlipayFormData, } from './MAlipay/interface';
export { default as MAlipay } from './MAlipay';
export type { AlipayProps, AlipayModalProps, AlipayButtonProps, AlipayButtonRef, AlipayModalRef, } from './Alipay/interface';
export { default as Alipay } from './Alipay';
export type { WechatProps, WechatModalProps, WechatButtonProps, WechatButtonRef, WechatModalRef, } from './Wechat/interface';
export { default as Wechat } from './Wechat';
export type { PayButtonProps, GenericPayButtonRef, } from './PayButton/interface';
export { default as PayButton } from './PayButton';
export * from './shared';