26 lines
654 B
TypeScript
26 lines
654 B
TypeScript
export interface AppProps {}
|
|
|
|
export interface WalletmanAppState {
|
|
/* Paytm Personal */
|
|
showPaytmPersonalBind: boolean;
|
|
paytmPersonalBindType: 'otpMode' | 'tokenMode';
|
|
showPaytmBusinessBind: boolean;
|
|
|
|
/* PhonePe Personal */
|
|
showPhonePePersonalBind: boolean;
|
|
phonePePersonalBindType: 'otpMode' | 'tokenMode';
|
|
showPhonePeBusinessBind: boolean;
|
|
|
|
/* GooglePay Business */
|
|
showGooglePayBusinessBind: boolean;
|
|
|
|
/* BharatPe Business */
|
|
showBharatPeBusinessBind: boolean;
|
|
|
|
/* Mobikwik Personal */
|
|
showMobikwikPersonalBind: boolean;
|
|
|
|
/* Freecharge Personal */
|
|
showFreechargePersonalBind: boolean;
|
|
}
|