/// import { loadStripe } from '@stripe/stripe-js'; import { StripeConstructor } from '@stripe/stripe-js/types/stripe-js'; declare global { interface Window { Stripe?: StripeConstructor; } namespace NodeJS { interface Global { Stripe: typeof loadStripe; fetch: jest.Mock; } } }