| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- export type RootStackParamList = {
- Main: undefined;
- Login: undefined;
- AlertModal: {
- msg: string;
- title: string;
- hasCancel: Boolean;
- submitEvent: Event;
- };
- };
- export type LoginStackParamList = {
- Login: undefined;
- Register: undefined;
- Certification: undefined;
- Transportation: undefined;
- ApplyLocation: undefined;
- AuditResult: undefined;
- SearchMap: undefined;
- };
- export type MainTabParamList = {
- Order: undefined;
- Notice: undefined;
- Mine: undefined;
- };
- export type OrderStackParamList = {
- Order: undefined;
- };
- export type NoticeStackParamList = {
- Notice: undefined;
- };
- export type MineStackParamList = {
- Mine: undefined;
- };
- export type LoginTabParamList = {
- Psd: undefined;
- Code: undefined;
- };
|