From 874349b3827cc67980e982a83ea25ccba99ae7b4 Mon Sep 17 00:00:00 2001 From: Sergei Butko Date: Sat, 9 Dec 2017 11:02:58 +0200 Subject: [PATCH] Added missing allowFontScaling option into tabBarOptions --- types/react-navigation/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/react-navigation/index.d.ts b/types/react-navigation/index.d.ts index 02ff37bcb1..87e4ad40c6 100644 --- a/types/react-navigation/index.d.ts +++ b/types/react-navigation/index.d.ts @@ -10,8 +10,9 @@ // charlesfamu // Tim Wang // Qibang Sun +// Sergei Butko: // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.3 +// TypeScript Version: 2.6 /** * BEGIN FLOW TYPEDEFINITION.JS PORT @@ -572,6 +573,7 @@ export interface TabViewConfig { tabBarPosition?: 'top' | 'bottom'; tabBarOptions?: { activeTintColor?: string, + allowFontScaling?: boolean, activeBackgroundColor?: string, inactiveTintColor?: string, inactiveBackgroundColor?: string,