UNPKG

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) 463 B
import Airwallex from './airwallex'; import AirwallexPopup from './airwallex-popup'; import AirwallexButton from './airwallex-button'; import AirwallexModal from './airwallex-modal'; export * from './interface'; type AirwallexComponentType = typeof Airwallex & { Button: typeof AirwallexButton; Popup: typeof AirwallexPopup; Modal: typeof AirwallexModal; }; declare const AirwallexComponent: AirwallexComponentType; export default AirwallexComponent;