| 12345678910111213141516171819202122232425262728293031 |
- export type RootStackParamList = {
- Main: undefined;
- AlertModal: {
- msg: string;
- title: string;
- hasCancel: Boolean;
- submitEvent: Event;
- };
- };
- export type MainStackParamList = {
- Login: undefined;
- Register: undefined;
- Root: undefined;
- };
- export type BottomTabParamList = {
- TabOne: undefined;
- TabTwo: undefined;
- };
- export type LoginTabParamList = {
- Psd: undefined;
- Code: undefined;
- };
- export type TabOneParamList = {
- TabOneScreen: undefined;
- };
- export type TabTwoParamList = {
- TabTwoScreen: undefined;
- };
|