From c994f847a31f55069c8164e2dbaf4e96dd6b94c9 Mon Sep 17 00:00:00 2001 From: Brandon Tom Date: Fri, 13 Dec 2024 15:15:34 -0800 Subject: [PATCH] fix: added `payPalComplete` property to PayPal `DirectConfig` type definition --- types/lib/paypal.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/lib/paypal.d.ts b/types/lib/paypal.d.ts index 333405968..6c62a5ebc 100644 --- a/types/lib/paypal.d.ts +++ b/types/lib/paypal.d.ts @@ -25,6 +25,7 @@ export type DirectConfig = { logoImageUrl?: string; headerImageUrl?: string; }; + payPalComplete?: boolean; }; export type PayPalConfig = BraintreeConfig | DirectConfig;