aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
authorShravya Ramesh <37447613+shravyaramesh@users.noreply.github.com>2021-07-23 16:01:16 -0700
committerGitHub <noreply@github.com>2021-07-23 16:01:16 -0700
commit93b0bdb6d5d3070ece012626f9d9d6634f0eb0d8 (patch)
treede1aab12445184023db6b7f1e5dce94e8416d233 /src/routes
parent6fcfb36b37dd51d3e9d5baf025b896cc6f6045ee (diff)
parent2f64db843b80229d08f8f0ae7e1d80b24ac38c12 (diff)
Merge branch 'master' into tma936-pause-video
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/main/MainStackNavigator.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/main/MainStackNavigator.tsx b/src/routes/main/MainStackNavigator.tsx
index 11e9d08d..8def19e3 100644
--- a/src/routes/main/MainStackNavigator.tsx
+++ b/src/routes/main/MainStackNavigator.tsx
@@ -46,7 +46,7 @@ export type MainStackParams = {
};
CaptionScreen: {
screenType: ScreenType;
- media?: {uri: string; isVideo: boolean};
+ media?: {uri: string; isVideo: boolean; videoDuration: number | undefined};
selectedCategory?: string;
selectedTags?: MomentTagType[];
moment?: MomentType;
@@ -58,6 +58,7 @@ export type MainStackParams = {
media: {
uri: string;
isVideo: boolean;
+ videoDuration: number | undefined;
};
selectedTags?: MomentTagType[];
};