mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import Stripe from "stripe";
|
|
|
|
export type { Stripe } from "stripe";
|
|
|
|
export const stripe = new Stripe(process.env.STRIPE_SECRET_KEY as string, {
|
|
apiVersion: "2023-08-16",
|
|
typescript: true,
|
|
});
|