Add subscription support + license extension on renewal
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
import { Stripe } from './stripe.core.js';
|
||||
import { StripeConfig } from './lib.js';
|
||||
type StripeCallableConstructor = typeof Stripe & {
|
||||
(key?: string, config?: StripeConfig): Stripe;
|
||||
new (key?: string, config?: StripeConfig): Stripe;
|
||||
};
|
||||
declare const StripeConstructor: StripeCallableConstructor;
|
||||
export = StripeConstructor;
|
||||
Reference in New Issue
Block a user