UNPKG
redux-request-loading
Version:
latest (2.0.0)
2.0.0
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0
Package for tracking loading state of multiple requests
redux-request-loading
/
dist
/
actionReducer.d.ts
5 lines
(4 loc)
•
204 B
TypeScript
View Raw
1
2
3
4
5
import
{
Loading
}
from
"./model"
;
import
{
LoadingAction
}
from
"./actions"
;
export
declare
const
defaultState
:
Loading
;
export
declare
const
loading
:
(
state
:
Loading
,
action
:
LoadingAction
) =>
Loading
;