GT2/Ejectable/types.tsx
Ren Juan e6b3ee2ea6 *
2021-08-16 07:50:50 +00:00

22 lines
404 B
TypeScript

/**
* Learn more about using TypeScript with React Navigation:
* https://reactnavigation.org/docs/typescript/
*/
export type RootStackParamList = {
Root: undefined;
NotFound: undefined;
};
export type BottomTabParamList = {
Trip: undefined;
Settings: undefined;
};
export type TripParamList = {
TripScreen: undefined;
};
export type SettingsParamList = {
SettingsScreen: undefined;
};