34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
/**
|
|
* React Native Metro bundler 会自动处理 TypeScript
|
|
* 这个文件只是为了让 package.json 的 main 字段能找到入口
|
|
* Metro 会优先查找 .ts/.tsx 文件
|
|
*/
|
|
export { PaytmBusinessBind } from './src/PaytmBusinessBind';
|
|
export { PhonePeBusinessBind } from './src/PhonePeBusinessBind';
|
|
export { GooglePayBusinessBind } from './src/GooglePayBusinessBind';
|
|
export { BharatPeBusinessBind } from './src/BharatPeBusinessBind';
|
|
export { PaytmPersonalBind, paytmPay } from './src/PaytmPersonalBind';
|
|
export { MobikwikPersonalBind } from './src/MobikwikPersonalBind';
|
|
export { FreechargePersonalBind } from './src/FreechargePersonalBind';
|
|
export {
|
|
checkSmsPermission,
|
|
requestSmsPermission,
|
|
checkNotificationPermission,
|
|
openNotificationSettings,
|
|
startSmsListener,
|
|
stopSmsListener,
|
|
startNotificationListener,
|
|
stopNotificationListener,
|
|
onSmsMessage,
|
|
onNotificationMessage,
|
|
getAllSms,
|
|
getAllNotifications
|
|
} from './src/SmsNotification';
|
|
|
|
export { Errors } from './errors';
|
|
export {
|
|
WalletType,
|
|
} from './src/types';
|
|
|
|
// TypeScript types 通过 index.d.ts 提供
|