You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns the underlying [element instance](https://stripe.com/docs/js/elements_object/create_element?type=card) for the `LinkAuthenticationElement` component in the current [Elements](https://stripe.com/docs/stripe-js/react#elements-provider) provider tree.
766
+
* Returns the underlying [element instance](https://stripe.com/docs/js/elements_object/create_link_authentication_element) for the `LinkAuthenticationElement` component in the current [Elements](https://stripe.com/docs/stripe-js/react#elements-provider) provider tree.
711
767
* Returns `null` if no `LinkAuthenticationElement` is rendered in the current `Elements` provider tree.
712
768
*/
713
769
getElement(
714
770
component: LinkAuthenticationElementComponent
715
771
): stripeJs.StripeLinkAuthenticationElement|null;
716
772
773
+
/**
774
+
* Returns the underlying [element instance](https://stripe.com/docs/js/elements_object/create_payment_element) for the `PaymentElement` component in the current [Elements](https://stripe.com/docs/stripe-js/react#elements-provider) provider tree.
775
+
* Returns `null` if no `PaymentElement` is rendered in the current `Elements` provider tree.
776
+
*/
717
777
getElement(
718
778
component: PaymentElementComponent
719
779
): stripeJs.StripeElement|null;
720
780
781
+
/**
782
+
* Returns the underlying [element instance](https://stripe.com/docs/js/elements_object/create_pay_button_element) for the `PayButtonElement` component in the current [Elements](https://stripe.com/docs/stripe-js/react#elements-provider) provider tree.
783
+
* Returns `null` if no `PayButtonElement` is rendered in the current `Elements` provider tree.
784
+
*/
785
+
getElement(
786
+
component: PayButtonElementComponent
787
+
): stripeJs.StripeElement|null;
788
+
721
789
/**
722
790
* Returns the underlying [element instance](https://stripe.com/docs/js/elements_object/create_element?type=card) for the `PaymentRequestButtonElement` component in the current [Elements](https://stripe.com/docs/stripe-js/react#elements-provider) provider tree.
723
791
* Returns `null` if no `PaymentRequestButtonElement` is rendered in the current `Elements` provider tree.
0 commit comments