diff --git a/src/navigations/Types.ts b/src/navigations/Types.ts index ee2a930..87edab8 100644 --- a/src/navigations/Types.ts +++ b/src/navigations/Types.ts @@ -1,9 +1,12 @@ +import type { PaymentCode } from "@/utils/requests/Types"; import type { NativeStackScreenProps } from "@react-navigation/native-stack"; export type PaymentStackParamList = { homePageWithPaymentOptions: undefined; numberAndOtpForPaymentScreen: undefined; - paymentAmountInputScreen: undefined; + paymentAmountInputScreen: { + paymentType: PaymentCode; + }; homeUserNotLoggedIn: undefined; userLoginScreen: undefined; };