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
/
useStore.d.ts
3 lines
(2 loc)
•
162 B
TypeScript
View Raw
1
2
3
import
{
Store
}
from
'redux'
;
export
declare
const
useStore
: <S
extends
Store
<
any
,
import
(
"redux"
).
AnyAction
> =
Store
<
any
,
import
(
"redux"
).
AnyAction
>>
() =>
S;