@react-navigation/core 7.13.0 → 7.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/typescript/src/types.d.ts +1 -1
- package/package.json +2 -2
- package/src/types.tsx +1 -1
|
@@ -302,7 +302,7 @@ type NavigationHelpersRoute<ParamList extends {}, RouteName extends keyof ParamL
|
|
|
302
302
|
export type NavigationHelpers<ParamList extends ParamListBase, EventMap extends EventMapBase = {}> = NavigationHelpersCommon<ParamList> & EventEmitter<EventMap> & NavigationHelpersRoute<ParamList, keyof ParamList>;
|
|
303
303
|
export type NavigationContainerProps = {
|
|
304
304
|
/**
|
|
305
|
-
* Initial
|
|
305
|
+
* Initial state object for the navigation tree.
|
|
306
306
|
*/
|
|
307
307
|
initialState?: InitialState;
|
|
308
308
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-navigation/core",
|
|
3
3
|
"description": "Core utilities for building navigators",
|
|
4
|
-
"version": "7.13.
|
|
4
|
+
"version": "7.13.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
7
7
|
"react-native",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
]
|
|
84
84
|
]
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "2c9388b71c2b593b06ef7d42d3d2f37a9159f3e0"
|
|
87
87
|
}
|
package/src/types.tsx
CHANGED