( body: Donation )
| 296 | } |
| 297 | |
| 298 | export function postChargeStripeCard( |
| 299 | body: Donation |
| 300 | ): Promise<ResponseWithData<void>> { |
| 301 | return post('/donate/charge-stripe-card', body); |
| 302 | } |
| 303 | |
| 304 | export function generateExamToken(): Promise< |
| 305 | ResponseWithData<ExamTokenResponse> |