UNPKG

razorpay-react-sdk

Version:

A simple Razorpay integration package for React & Next.js with TypeScript support.

6 lines (5 loc) 281 B
import { RazorpayOptions } from "./RazorpayOptions"; /** * Type for payment-specific options that change per transaction. */ export type RazorpayPaymentOptions = Pick<RazorpayOptions, "order_id" | "amount" | "currency" | "name" | "subscription_id" | "handler" | "callback_url">;