From 72db45653c82c648d21c4454db833aa588d360bc Mon Sep 17 00:00:00 2001 From: Carlos Roberto Date: Tue, 7 May 2019 15:31:10 -0300 Subject: [PATCH] Add missing type to BottomTabNavigatorConfig (#35163) This type is missing on package [https://reactnavigation.org/docs/en/bottom-tab-navigator.html](https://reactnavigation.org/docs/en/bottom-tab-navigator.html) --- types/react-navigation/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-navigation/index.d.ts b/types/react-navigation/index.d.ts index 0c56d71914..0fcc92a429 100644 --- a/types/react-navigation/index.d.ts +++ b/types/react-navigation/index.d.ts @@ -1002,6 +1002,7 @@ export interface BottomTabNavigatorConfig extends NavigationBottomTabRouterConfig, TabViewConfig { lazy?: boolean; + resetOnBlur?: boolean; removeClippedSubviews?: boolean; initialLayout?: { height: number; width: number }; }