Skip to content

Commit f43f316

Browse files
committed
fix(alm): type error (typescript>=4.6) in counter example #2105
1 parent c87f803 commit f43f316

File tree

1 file changed

+1
-1
lines changed
  • examples/action-listener/counter/src

1 file changed

+1
-1
lines changed

examples/action-listener/counter/src/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export type AppDispatch = typeof store.dispatch
3131

3232
export type AppListenerEffectAPI = ListenerEffectAPI<RootState, AppDispatch>
3333

34-
export type AppStartListening = TypedStartListening<RootState>
34+
export type AppStartListening = TypedStartListening<RootState, AppDispatch>
3535
export type AppAddListener = TypedAddListener<RootState>
3636

3737
export const startAppListening =

0 commit comments

Comments
 (0)