From 5fe4ab3c8dbe2d519880ebe40fe8088e7ce39ce9 Mon Sep 17 00:00:00 2001 From: M Fahru Date: Mon, 25 Nov 2024 09:36:18 -0700 Subject: [PATCH] Merge pull request #22078 from overleaf/mf-checkout-page-form-submission [web] New checkout page form submission GitOrigin-RevId: 7cd41e6880a8d9ce24f7795f1870ea65dd9bd19a --- services/web/types/subscription/payment-method.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 services/web/types/subscription/payment-method.ts diff --git a/services/web/types/subscription/payment-method.ts b/services/web/types/subscription/payment-method.ts new file mode 100644 index 0000000000..fae85fa456 --- /dev/null +++ b/services/web/types/subscription/payment-method.ts @@ -0,0 +1 @@ +export type PaymentMethod = 'credit_card' | 'paypal'