mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
/// <reference types="./stripe.d.ts" />
|
|
import Stripe from 'stripe';
|
|
|
|
import { env } from '../../utils/env';
|
|
|
|
export const stripe = new Stripe(env('NEXT_PRIVATE_STRIPE_API_KEY') ?? '', {
|
|
apiVersion: '2022-11-15',
|
|
typescript: true,
|
|
});
|
|
|
|
export { Stripe };
|