dm-unimmersive
Version:
HTML Video player
10 lines (9 loc) • 483 B
TypeScript
import { TypedUseSelectorHook } from 'react-redux';
import { RootState } from '../types';
/**
* Typed redux hooks. They're already know all about our state
* and middleware that we had defined in our store.
* More: https://react-redux.js.org/using-react-redux/usage-with-typescript#define-typed-hooks
*/
export declare const useAppSelector: TypedUseSelectorHook<RootState>;
export declare const useAppDispatch: () => import("redux").Dispatch<import("redux").AnyAction>;