mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 08:42:12 +10:00
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import Stripe from 'stripe';
|
|
|
|
// eslint-disable-next-line turbo/no-undeclared-env-vars
|
|
export const stripe = new Stripe(process.env.NEXT_PRIVATE_STRIPE_API_KEY!, {
|
|
apiVersion: '2022-11-15',
|
|
typescript: true,
|
|
});
|
|
|
|
export { Stripe };
|