diff --git a/src/checkout/types/index.ts b/src/checkout/types/index.ts index 23db7192..5ec4dd1b 100644 --- a/src/checkout/types/index.ts +++ b/src/checkout/types/index.ts @@ -73,11 +73,7 @@ export type CheckoutFormComponent = FunctionComponent; export type ExpressCheckoutElementProps = Omit< RootExpressCheckoutElementProps, - | 'options' - | 'onClick' - | 'onCancel' - | 'onShippingAddressChange' - | 'onShippingRateChange' + 'options' | 'onClick' | 'onShippingAddressChange' | 'onShippingRateChange' > & {options?: stripeJs.StripeCheckoutExpressCheckoutElementOptions}; export type ExpressCheckoutElementComponent = FunctionComponent<