You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
import { MySetting } from '../services/api/setting'; |
|
|
|
export type RootStackParamList = { |
|
CountrySelect: undefined; |
|
MainApp: undefined; |
|
Login: undefined; |
|
EmailLogin: undefined; |
|
MainTabs: undefined; |
|
Search: undefined; |
|
SearchResult: { keyword: string }; |
|
ProductDetail: { productId: string; searchKeyword?: string }; |
|
Balance: undefined; |
|
ShippingDetailsSection: undefined; |
|
InquiryScreen: undefined; |
|
Recipient: { items: { cart_item_id: number }[] }; |
|
AddRess: undefined; |
|
SettingList: undefined; |
|
CountrySetting: { mySetting?: MySetting }; |
|
MyAddress: undefined; |
|
CartScreen: undefined; |
|
PaymentSuccessScreen: undefined; |
|
MyAccount: undefined; |
|
Google: undefined; |
|
ConfirmOrder: undefined; |
|
Pay: undefined; |
|
Status: undefined; |
|
OrderDetails: undefined; |
|
TikTokScreen: undefined; |
|
BrowseHistoryScreen: undefined; |
|
Collection: undefined; |
|
MemberIntroduction: undefined; |
|
CompanyScreen: undefined; |
|
PreviewAddress: undefined; |
|
AddressList: undefined; |
|
AddAddress: undefined; |
|
EditAddress: undefined; |
|
PaymentMethod: undefined; |
|
ShippingFee: undefined; |
|
PreviewOrder: undefined; |
|
ForgotPhonePassword: undefined; |
|
};
|
|
|