UNPKG
vue-redux-hooks
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Redux hooks for Vue
github.com/PatrykWalach/vue-redux-hooks
PatrykWalach/vue-redux-hooks
vue-redux-hooks
/
dist
/
dts
/
hooks
/
useDispatch.d.ts
3 lines
(2 loc)
•
143 B
TypeScript
View Raw
1
2
3
import
{
Dispatch
,
AnyAction
}
from
'redux'
;
export
declare
const
useDispatch
: <D
extends
Dispatch
<
AnyAction
> =
Dispatch
<
AnyAction
>>
() =>
D;