Skip to content

Commit

Permalink
fix: with animated typing for childrens
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremybarbet committed Feb 4, 2020
1 parent f7e53cc commit cb13b06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,17 +164,17 @@ export interface IProps<FlatListItem = any, SectionListItem = any> {
/*
* An object to pass any of the react-native ScrollView's props.
*/
scrollViewProps?: ScrollViewProps;
scrollViewProps?: Animated.AnimatedProps<ScrollViewProps>;

/*
* An object to pass any of the react-native FlatList's props.
*/
flatListProps?: FlatListProps<FlatListItem>;
flatListProps?: Animated.AnimatedProps<FlatListProps<FlatListItem>>;

/*
* An object to pass any of the react-native SectionList's props.
*/
sectionListProps?: SectionListProps<SectionListItem>;
sectionListProps?: Animated.AnimatedProps<SectionListProps<SectionListItem>>;

/**
* A header component outside of the ScrollView, on top of the modal.
Expand Down

0 comments on commit cb13b06

Please sign in to comment.