We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b0787 commit a7bb453Copy full SHA for a7bb453
src/index.ts
@@ -6,7 +6,13 @@ import _createRouterMiddleware from './middleware'
6
7
export {
8
LOCATION_CHANGE,
9
+ LocationChangeAction,
10
CALL_ROUTER_METHOD,
11
+ CallRouterMethodAction,
12
+ CallRouterMethodPushPayload,
13
+ CallRouterMethodReplacePayload,
14
+ CallRouterMethodGoPayload,
15
+ CallRouterMethodPrefetchPayload,
16
routerActions,
17
push,
18
replace,
@@ -16,6 +22,7 @@ export {
22
prefetch,
23
} from './actions'
24
export { default as routerMethods } from './routerMethods'
25
+export { LocationState, RouterState } from './types'
19
26
20
27
export const initialRouterState = createInitialRouterState(plainStructure)
21
28
export const routerReducer = createRouterReducer(plainStructure)
0 commit comments