From 854aebe0fe5a686ce07ea438f494f1224d4d2159 Mon Sep 17 00:00:00 2001 From: Andrew Linfoot Date: Wed, 14 Jun 2017 20:09:14 -0700 Subject: [PATCH] Add support for key on reset action --- types/react-navigation/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-navigation/index.d.ts b/types/react-navigation/index.d.ts index e343d092c6..8be0e2ecc5 100644 --- a/types/react-navigation/index.d.ts +++ b/types/react-navigation/index.d.ts @@ -268,6 +268,7 @@ export interface NavigationInitAction { export interface NavigationResetAction { type?: 'Navigation/RESET', index: number, + key?: string | null, actions: NavigationNavigateAction[], }