From 692c76c786dab35fccc35cb0edae4adce7ed19e8 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Mon, 27 Aug 2018 12:11:23 +0200 Subject: [PATCH] Add static Height --- 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 a1f60c0f81..684b1b0d17 100644 --- a/types/react-navigation/index.d.ts +++ b/types/react-navigation/index.d.ts @@ -1193,7 +1193,9 @@ export const HeaderBackButton: React.ComponentClass; /** * Header Component */ -export const Header: React.ComponentClass; +export class Header extends React.Component { + static HEIGHT: number; +} export interface NavigationInjectedProps

{ navigation: NavigationScreenProp;