import SdkPaymentModule from './NativeSdkPaymentModule'; interface InitializeOptions { apiServerName: String; applePayMerchantId?: String; // Apple only applePayMerchantName?: String; // Apple only nfcEnabled?: boolean; // Android only cardScanningEnabled?: boolean; } export enum PaymentMethods { ALL = 'all', APPLE_PAY = 'applePay', // Apple only GOOGLE_PAY = 'googlePay', // Android only CARD = 'cardPayment', } interface ProcessOptions { customPayButtonLabel?: String; customHeaderLabel?: String; customPopupLabel?: String; paymentMethodType?: PaymentMethods; } export function getFormTokenVersion(): number { return SdkPaymentModule.getFormTokenVersion(); } /** @deprecated replace with getSDKVersion */ export function getSdkVersion(): string { return SdkPaymentModule.getSDKVersion(); } export function getSDKVersion(): string { return SdkPaymentModule.getSDKVersion(); } export function initialize( publicKey: string, options: InitializeOptions ): Promise { return SdkPaymentModule.initialize(publicKey, options); } export function process( formToken: string, options: ProcessOptions ): Promise { return SdkPaymentModule.process(formToken, options); } export function cancelProcess() { return SdkPaymentModule.cancelProcess(); }