Files
sign/packages/lib/server-only/stripe/index.ts

12 lines
259 B
TypeScript
Raw Normal View History

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-31 14:09:02 +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 };