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.

44 lines
1.3 KiB

1 month ago
import { MySetting } from '../services/api/setting';
2 months ago
export type RootStackParamList = {
CountrySelect: undefined;
2 months ago
MainApp: undefined;
Login: undefined;
EmailLogin: undefined;
MainTabs: undefined;
Search: undefined;
SearchResult: { keyword?: string, category_id?: number, formData?: FormData };
3 weeks ago
ImageSearchResultScreen: { image?: string, type?: number };
ProductDetail: { productId: string; searchKeyword?: string };
2 months ago
Balance: undefined;
ShippingDetailsSection: undefined;
InquiryScreen: undefined;
Recipient: { items: { cart_item_id: number }[] };
AddRess: undefined;
1 month ago
SettingList: undefined;
CountrySetting: { mySetting?: MySetting };
1 month ago
MyAddress: undefined;
CartScreen: undefined;
3 weeks ago
PaymentSuccessScreen: { paymentId?: string; PayerID?: string };
PayError: 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;
1 month ago
};