2023-10-13 23:33:40 +11:00
|
|
|
/// <reference types="./stripe.d.ts" />
|
2023-06-09 18:21:18 +10:00
|
|
|
import Stripe from 'stripe';
|
|
|
|
|
|
2025-01-02 15:33:37 +11:00
|
|
|
import { env } from '../../utils/env';
|
|
|
|
|
|
|
|
|
|
export const stripe = new Stripe(env('NEXT_PRIVATE_STRIPE_API_KEY') ?? '', {
|
2023-06-09 18:21:18 +10:00
|
|
|
apiVersion: '2022-11-15',
|
|
|
|
|
typescript: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export { Stripe };
|