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.

11 lines (10 loc) 342 B
import Wechat from "./wechat"; import WechatButton from "./wechat-button"; import WechatModal from "./wechat-modal"; type WechatComponentType = typeof Wechat & { Button: typeof WechatButton; Modal: typeof WechatModal; }; declare const WechatComponent: WechatComponentType; export * from "./interface"; export default WechatComponent;