import { NativeModules, Platform } from 'react-native'; const LINKING_ERROR = `The package 'paytm-routersdk-react-native' doesn't seem to be linked. Make sure: \n\n` + Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo Go\n'; const PaytmRouterSDK = NativeModules.PaytmRouterSdk ? NativeModules.PaytmRouterSdk : new Proxy( {}, { get() { throw new Error(LINKING_ERROR); }, } ); type PaytmRouterSDKType = { startTransaction( orderId: string, mid: string, txnToken: string, amount: string, callbackUrl: string, isStaging : boolean ): Promise; }; export default PaytmRouterSDK as PaytmRouterSDKType;