import { Finx } from "finx";
// Initialize with config
const finx = new Finx({
provider: "flutterwave",
apiKey: process.env.API_KEY
});
// Example: Create a payment.
await finx.payments.create({
amount: 5000,
currency: "NGN",
customer: { email: "jane@example.com" }
});