GT2/Ejected/types.tsx

28 lines
488 B
TypeScript
Raw Normal View History

2021-08-19 00:49:26 +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 = {
Splash: undefined;
Trip: undefined;
Settings: undefined;
};
export type TripParamList = {
TripScreen: undefined;
};
export type SettingsParamList = {
SettingsScreen: undefined;
};
export type SplashParamList = {
SplashScreen: undefined;
};