From 69e3a5078970dc7f856ebd019fd91189a1dfe54d Mon Sep 17 00:00:00 2001 From: Jake <> Date: Thu, 9 Aug 2018 00:43:24 +0800 Subject: [PATCH] [@types/react-navigation] Added missing `NavigationReplaceAction` type variant to `NavigationStackAction` --- types/react-navigation/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-navigation/index.d.ts b/types/react-navigation/index.d.ts index 2573315c09..5e3e1f749d 100644 --- a/types/react-navigation/index.d.ts +++ b/types/react-navigation/index.d.ts @@ -19,6 +19,7 @@ // Jérémy Magrin // Luca Campana // Ullrich Schaefer +// Jake // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 @@ -441,6 +442,7 @@ export type NavigationStackAction = | NavigationBackAction | NavigationSetParamsAction | NavigationResetAction + | NavigationReplaceAction | NavigationPopAction | NavigationPushAction | NavigationPopToTopAction;