diff options
Diffstat (limited to 'src/lib/routes/types.ts')
-rw-r--r-- | src/lib/routes/types.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index ac5cb0bce..f9a592711 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -38,6 +38,8 @@ export type CommonNavigatorParams = { AccessibilitySettings: undefined Search: {q?: string} Hashtag: {tag: string; author?: string} + MessagesConversation: {conversation: string} + MessagesSettings: undefined } export type BottomTabNavigatorParams = CommonNavigatorParams & { @@ -46,6 +48,7 @@ export type BottomTabNavigatorParams = CommonNavigatorParams & { FeedsTab: undefined NotificationsTab: undefined MyProfileTab: undefined + MessagesTab: undefined } export type HomeTabNavigatorParams = CommonNavigatorParams & { @@ -68,12 +71,17 @@ export type MyProfileTabNavigatorParams = CommonNavigatorParams & { MyProfile: undefined } +export type MessagesTabNavigatorParams = CommonNavigatorParams & { + MessagesList: undefined +} + export type FlatNavigatorParams = CommonNavigatorParams & { Home: undefined Search: {q?: string} Feeds: undefined Notifications: undefined Hashtag: {tag: string; author?: string} + MessagesList: undefined } export type AllNavigatorParams = CommonNavigatorParams & { @@ -87,6 +95,8 @@ export type AllNavigatorParams = CommonNavigatorParams & { Notifications: undefined MyProfileTab: undefined Hashtag: {tag: string; author?: string} + MessagesTab: undefined + MessagesList: undefined } // NOTE |