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
/
model.d.ts
10 lines
(9 loc)
•
213 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
Loading
{
readonly
active
:
boolean
;
readonly
activeRequests
:
string
[];
readonly
progress
:
number
;
readonly
total
:
number
; }
export
interface
LoadingState
{
loading
:
Loading
; }