From 81d7d8b0335dd986be657b35cb4d803b5633439b Mon Sep 17 00:00:00 2001 From: Gertjan Reynaert Date: Tue, 8 Jan 2019 14:00:10 +0100 Subject: [PATCH] Add FlatList and SectionList to Animated Since [React-Native 57](https://github.com/react-native-community/react-native-releases/blob/master/CHANGELOG.md#added-new-features-4) FlatList and SectionList are added to the exports of Animated. This pr reflects that addition in the type definitions. --- types/react-native/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 2c3922b89d..eb76314c26 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -8677,6 +8677,8 @@ export namespace Animated { export const Image: any; export const Text: any; export const ScrollView: any; + export const FlatList: any; + export const SectionList: any; } // tslint:disable-next-line:interface-name