types.tsx 750 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. export type RootStackParamList = {
  2. Main: undefined;
  3. Login: undefined;
  4. AlertModal: {
  5. msg: string;
  6. title: string;
  7. hasCancel: Boolean;
  8. submitEvent: Event;
  9. };
  10. };
  11. export type LoginStackParamList = {
  12. Login: undefined;
  13. Register: undefined;
  14. Certification: undefined;
  15. Transportation: undefined;
  16. ApplyLocation: undefined;
  17. AuditResult: undefined;
  18. SearchMap: undefined;
  19. };
  20. export type MainTabParamList = {
  21. Order: undefined;
  22. Notice: undefined;
  23. Mine: undefined;
  24. };
  25. export type OrderStackParamList = {
  26. Order: undefined;
  27. };
  28. export type NoticeStackParamList = {
  29. Notice: undefined;
  30. };
  31. export type MineStackParamList = {
  32. Mine: undefined;
  33. };
  34. export type LoginTabParamList = {
  35. Psd: undefined;
  36. Code: undefined;
  37. };