From 581bcc1903f76eabd1f2ff5d2724b2f3fc03c1b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=CC=81s=CC=8C=20Havli=CC=81c=CC=8Cek?= Date: Thu, 3 Jan 2019 14:40:12 +0100 Subject: [PATCH] React Native - added missing docs --- types/react-native/index.d.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 6a6db87b54..2c3922b89d 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -3994,6 +3994,9 @@ export interface FlatListProps extends VirtualizedListProps { */ keyExtractor?: (item: ItemT, index: number) => string; + /** + * Uses legacy MetroListView instead of default VirtualizedSectionList + */ legacyImplementation?: boolean; /** @@ -4269,7 +4272,10 @@ export interface SectionListProps extends VirtualizedListWithoutRenderIte * Only enabled by default on iOS because that is the platform standard there. */ stickySectionHeadersEnabled?: boolean; - + + /** + * Uses legacy MetroListView instead of default VirtualizedSectionList + */ legacyImplementation?: boolean; }