UNPKG

@aut-labs/d-aut

Version:

## Web Component - what it does

6 lines (5 loc) 273 B
import { ThunkDispatch, AnyAction } from '@reduxjs/toolkit'; import store from './store'; export type RootState = ReturnType<typeof store.getState>; export type AppDispatch = ThunkDispatch<RootState, any, AnyAction>; export declare const useAppDispatch: () => AppDispatch;