From af3543de51e4fdb83e3cb5db237b75198a79edbb Mon Sep 17 00:00:00 2001 From: Cristian Gomez Date: Wed, 19 Sep 2018 14:38:12 -0400 Subject: [PATCH] fix: add right title to ts definition TS definition lacks of rightTitle on the definition of Scene. --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 4a9e23365..e06194661 100644 --- a/index.d.ts +++ b/index.d.ts @@ -50,6 +50,7 @@ interface SceneProps extends React.Props { renderLeftButton?: React.ComponentType; renderRightButton?: React.ComponentType; renderBackButton?: React.ComponentType; + rightTitle?: string; rightButtonImage?: Image; rightButtonTextStyle?: StyleProp; success?: (() => void) | string;