blob: 6d875e81009860d2f1abcc79b6e355504fe52497 (
plain)
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
|
import {createStackNavigator} from '@react-navigation/stack';
import {MomentType} from '../../types';
export type ProfileStackParams = {
Search: undefined;
Profile: {
isProfileView: boolean;
};
SocialMediaTaggs: {
socialMediaType: string;
socialMediaHandle: string;
isProfileView: boolean;
};
CaptionScreen: {
title: string;
image: object;
};
IndividualMoment: {
moment: MomentType;
isProfileView: boolean;
};
MomentCommentsScreen: {
isProfileView: boolean;
moment_id: string;
};
ProfileView: {
isProfileView: boolean;
};
};
export const ProfileStack = createStackNavigator<ProfileStackParams>();
|