From de518ab03003212500979f73833fb3ddaa128445 Mon Sep 17 00:00:00 2001 From: Kohki Makimoto Date: Tue, 11 Jul 2017 13:55:01 +0900 Subject: [PATCH] [react-native] Add type `renderSectionFooter` for SectionList --- types/react-native/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index dfdfde82c6..5dedae5911 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -3715,6 +3715,11 @@ export interface SectionListProperties extends ScrollViewProperties { */ renderSectionHeader?: (info: {section: SectionListData}) => React.ReactElement | null + /** + * Rendered at the bottom of each section. + */ + renderSectionFooter?: (info: {section: SectionListData}) => React.ReactElement | null + /** * An array of objects with data for each section. */