GT2/Ejectable/types.tsx

28 lines
482 B
TypeScript
Raw Normal View History

2021-08-16 07:50:50 +00:00
/**
* Learn more about using TypeScript with React Navigation:
* https://reactnavigation.org/docs/typescript/
*/
export type RootStackParamList = {
Root: undefined;
NotFound: undefined;
};
export type BottomTabParamList = {
2021-08-21 13:05:22 +00:00
Home: undefined;
2021-08-16 07:50:50 +00:00
Trip: undefined;
Settings: undefined;
};
export type TripParamList = {
TripScreen: undefined;
};
export type SettingsParamList = {
SettingsScreen: undefined;
};
2021-08-17 22:00:09 +00:00
2021-08-21 13:05:22 +00:00
export type HomeParamList = {
HomeScreen: undefined;
2021-08-17 22:00:09 +00:00
};