Adding StripeOption "betas" which allows use of Stripe's Checkout Beta

Stripe has made a new checkout api that can be used if you include  betas: ['checkout_beta_4']  in StripeOptions.
 https://stripe.com/docs/payments/checkout
This commit is contained in:
itsonlycode
2019-04-10 11:42:41 +02:00
committed by GitHub
parent 5923986633
commit 45e6bfb39c

View File

@@ -31,6 +31,7 @@ declare namespace stripe {
interface StripeOptions {
stripeAccount?: string;
betas?: string[];
}
interface TokenOptions {