diff --git a/packages/loot-core/src/client/store/index.ts b/packages/loot-core/src/client/store/index.ts index a71f440c118..78a7a5ad54c 100644 --- a/packages/loot-core/src/client/store/index.ts +++ b/packages/loot-core/src/client/store/index.ts @@ -59,6 +59,7 @@ export const store = configureStore({ }), }); +export type AppStore = typeof store; export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch; export type GetRootState = typeof store.getState;