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)
This commit is contained in:
Carlos Roberto
2019-05-07 11:31:10 -07:00
committed by Jesse Trinity
parent e6e2c8349d
commit 72db45653c
+1
View File
@@ -1002,6 +1002,7 @@ export interface BottomTabNavigatorConfig
extends NavigationBottomTabRouterConfig,
TabViewConfig {
lazy?: boolean;
resetOnBlur?: boolean;
removeClippedSubviews?: boolean;
initialLayout?: { height: number; width: number };
}