UNPKG

opengig-stripe

Version:

A wrapper for Stripe payment services with support for checkout and payment intents

8 lines (7 loc) 280 B
import { StripeCheckout } from './checkout'; import { StripePaymentIntent } from './intent'; export { StripeCheckout, StripePaymentIntent }; export declare const createStripeClient: (secretKey: string) => { checkout: StripeCheckout; paymentIntent: StripePaymentIntent; };