-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.tsx
67 lines (59 loc) · 1.7 KB
/
types.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* Learn more about using TypeScript with React Navigation:
* https://reactnavigation.org/docs/typescript/
*/
import { Post } from "./api/schemas";
import { RouteProp } from "@react-navigation/native";
import { NativeStackScreenProps } from "@react-navigation/native-stack";
declare global {
namespace ReactNavigation {
interface RootParamList extends RootStackParamList {}
}
}
export type RootStackParamList = {
Login: undefined;
Signup: undefined;
Onboarding: undefined;
BottomTabNavigator: undefined;
};
export type CommunityStackParamList = {
Community: undefined;
Posts: {
posts: Array<Post>;
screenTitle: string;
trail: Array<String>;
};
Post: {
post: Post;
screenTitle: string;
trail: Array<String>;
};
};
export type RepairStackParamList = {
Repair: undefined;
Posts: {
posts: Array<Post>;
screenTitle: string;
trail: Array<String>;
};
Post: {
post: Post;
screenTitle: string;
trail: Array<String>;
};
};
export type BottomTabParamList = {
Map: undefined;
RepairNavigator: undefined;
CommunityNavigator: undefined;
};
export type CommunityStackRouteProps<RouteName extends keyof CommunityStackParamList> = RouteProp<
CommunityStackParamList,
RouteName
>;
export type CommunityScreenProps = NativeStackScreenProps<CommunityStackParamList, "Community">;
export type CommunityScreenNavigationProp = CommunityScreenProps["navigation"];
export type CommunityScreenRouteProp = CommunityScreenProps["route"];
export type RepairScreenProps = NativeStackScreenProps<RepairStackParamList, "Repair">;
export type RepairScreenNavigationProp = RepairScreenProps["navigation"];
export type RepairScreenRouteProp = RepairScreenProps["route"];