first blood

This commit is contained in:
2026-01-23 16:48:55 +08:00
parent 608af0f289
commit 5e0e7e0069
122 changed files with 8930 additions and 2 deletions

33
rnwalletman/index.js Normal file
View File

@@ -0,0 +1,33 @@
/**
* 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 提供