import { NativeModules, Platform } from 'react-native'; const LINKING_ERROR = `The package '@lmapp/react-native-cloudpayments' 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 CloudpaymentsSdk = NativeModules.CloudpaymentsSdk ? NativeModules.CloudpaymentsSdk : new Proxy( {}, { get() { throw new Error(LINKING_ERROR); }, } ); // Экспорт сервисов export { PaymentService, CardService } from './services'; // Экспорт типов export * from './types'; // Экспорт енумов как значений export * from './types/enums'; // Экспорт событий export { eventEmitter } from './events'; // Экспорт хуков export * from './hooks'; export const init = (publicId: string): Promise => { return CloudpaymentsSdk.initialize(publicId); };