2025-07-14 19:58:58 +02:00

6 lines
143 B
TypeScript

import { store } from "./store";
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;