UNPKG
opengig-stripe
Version:
latest (1.0.3)
1.0.3
1.0.2
A wrapper for Stripe payment services with support for checkout and payment intents
opengig-stripe
/
dist
/
index.d.ts
8 lines
(7 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
StripeCheckout
}
from
'./checkout'
;
import
{
StripePaymentIntent
}
from
'./intent'
;
export
{
StripeCheckout
,
StripePaymentIntent
};
export
declare
const
createStripeClient
:
(
secretKey
:
string
) =>
{
checkout
:
StripeCheckout
;
paymentIntent
:
StripePaymentIntent
; };