Function
createStripePaymentIntent
(body: {
email: string | undefined;
name: string | undefined;
amount: number;
duration: DonationDuration;
})
Source from the content-addressed store, hash-verified
| 328 | >; |
| 329 | |
| 330 | export function createStripePaymentIntent(body: { |
| 331 | email: string | undefined; |
| 332 | name: string | undefined; |
| 333 | amount: number; |
| 334 | duration: DonationDuration; |
| 335 | }): PaymentIntentResponse { |
| 336 | return post('/donate/create-stripe-payment-intent', body); |
| 337 | } |
| 338 | |
| 339 | interface Report { |
| 340 | username: string; |
Tested by
no test coverage detected