Files
hydro-builder-app/node_modules/@stripe/stripe-js/dist/stripe-js/orders.d.ts
2026-06-13 17:36:44 -07:00

10 lines
262 B
TypeScript

/**
* Parameters that will be passed on to the Stripe API to confirm payment for an Order's PaymentIntent.
*/
export interface ProcessOrderParams {
/**
* The url your customer will be directed to after they complete payment.
*/
return_url: string;
}