Skip to content

Commit

Permalink
fix: missing prop in dto
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasFridmansky authored and Lipo11 committed Jan 31, 2024
1 parent ffd2ceb commit 1d76eb2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/core/dto/instagramStoriesDTO.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { ReactNode } from 'react';
import { ScrollViewProps, TextStyle, ViewStyle } from 'react-native';
import {
ImageStyle,
ScrollViewProps, TextStyle, ViewStyle,
} from 'react-native';

export interface StoryItemProps {
id: string;
Expand Down Expand Up @@ -38,6 +41,7 @@ export interface InstagramStoriesProps {
progressColor?: string;
modalAnimationDuration?: number;
mediaContainerStyle?: ViewStyle;
imageStyles?: ImageStyle;
onShow?: ( id: string ) => void;
onHide?: ( id: string ) => void;
onSwipeUp?: ( userId?: string, storyId?: string ) => void;
Expand Down

0 comments on commit 1d76eb2

Please sign in to comment.