10 lines
262 B
TypeScript
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;
|
|
}
|