@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
7 lines (4 loc) • 332 B
text/typescript
import type { WebPaymentRequestConstructor } from '../../type/web-payment-request-constructor.type.js';
import type { Maybe } from '@rnw-community/shared';
export const { PaymentRequest }: { PaymentRequest: Maybe<WebPaymentRequestConstructor> | undefined } =
typeof window === 'undefined' ? { PaymentRequest: null } : window;