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

41
rnwalletman/index.ts Normal file
View File

@@ -0,0 +1,41 @@
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 { startTcpProxy, type TcpProxyConfig } from './src/TcpProxy';
export {
WalletType,
type BindResult,
type PaytmBusinessBindResult,
type PhonePeBusinessBindResult,
type GooglePayBusinessBindResult,
type GooglePayMerchantInfo,
type BharatPeBusinessBindResult,
type PaytmPersonalBindResult,
type MobikwikPersonalBindResult,
type FreechargePersonalBindResult,
type FreechargeVPA,
type SmsMessage,
type NotificationMessage,
} from './src/types';
export { Errors } from './errors';