Merge pull request #27972 from jakebooyah/master

[@types/react-navigation] Added missing `NavigationReplaceAction` type variant to `NavigationStackAction`
This commit is contained in:
Ron Buckton
2018-08-08 13:21:33 -07:00
committed by GitHub

View File

@@ -19,6 +19,7 @@
// Jérémy Magrin <https://github.com/magrinj>
// Luca Campana <https://github.com/TizioFittizio>
// Ullrich Schaefer <https://github.com/stigi>
// Jake <https://github.com/jakebooyah>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
@@ -441,6 +442,7 @@ export type NavigationStackAction =
| NavigationBackAction
| NavigationSetParamsAction
| NavigationResetAction
| NavigationReplaceAction
| NavigationPopAction
| NavigationPushAction
| NavigationPopToTopAction;