How can I integrate Apple Pay JS with angular

Viewed 609

I'm looking into integrating Apple Pay into my checkout page. How to check whether the Apple Pay JS API is available in the browser by verifying that the ApplePaySession class exists.

When I gave the condition,

if (window.ApplePaySession && ApplePaySession.canMakePayments()){}

it shows the error, ie; "Property 'ApplePaySession' does not exist on type 'Window & typeof globalThis'".

1 Answers

Above the @component add following:

declare var ApplePaySession: any;
Related