28 lines
482 B
TypeScript
28 lines
482 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 = {
|
|
Home: undefined;
|
|
Trip: undefined;
|
|
Settings: undefined;
|
|
};
|
|
|
|
export type TripParamList = {
|
|
TripScreen: undefined;
|
|
};
|
|
|
|
export type SettingsParamList = {
|
|
SettingsScreen: undefined;
|
|
};
|
|
|
|
export type HomeParamList = {
|
|
HomeScreen: undefined;
|
|
};
|