UNPKG
@tanem/react-nprogress
Version:
beta (4.0.0-beta.3)
latest (5.0.55)
5.0.55
5.0.54
5.0.53
5.0.52
5.0.51
5.0.50
5.0.49
5.0.48
5.0.47
5.0.46
5.0.45
5.0.44
5.0.43
5.0.42
5.0.41
5.0.40
5.0.39
5.0.38
5.0.37
5.0.36
5.0.35
5.0.34
5.0.33
5.0.32
5.0.31
5.0.30
5.0.29
5.0.28
5.0.27
5.0.26
5.0.25
5.0.24
5.0.23
5.0.22
5.0.21
5.0.20
5.0.19
5.0.18
5.0.17
5.0.16
5.0.15
5.0.14
5.0.13
5.0.12
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.0.13
4.0.12
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-beta.3
4.0.0-beta.2
4.0.0-beta.1
3.0.82
3.0.81
3.0.80
3.0.79
3.0.78
3.0.77
3.0.76
3.0.75
3.0.74
3.0.73
3.0.72
3.0.71
3.0.70
3.0.69
3.0.68
3.0.67
3.0.66
3.0.65
3.0.64
3.0.63
3.0.62
3.0.61
3.0.60
3.0.59
3.0.58
3.0.57
3.0.56
3.0.55
3.0.54
3.0.53
3.0.52
3.0.51
3.0.50
3.0.49
3.0.48
3.0.47
3.0.46
3.0.45
3.0.44
3.0.43
3.0.42
3.0.41
3.0.40
3.0.39
3.0.38
3.0.37
3.0.36
3.0.35
3.0.34
3.0.33
3.0.32
3.0.31
3.0.30
3.0.29
3.0.28
3.0.27
3.0.26
3.0.25
3.0.24
3.0.23
3.0.22
3.0.21
3.0.20
3.0.19
3.0.18
3.0.17
3.0.16
3.0.15
3.0.14
3.0.13
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.7-beta.1
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.33
1.1.32
1.1.31
1.1.30
1.1.29
1.1.28
1.1.27
1.1.26
1.1.25
1.1.24
1.1.23
1.1.22
1.1.21
1.1.20
1.1.19
1.1.18
1.1.17
1.1.16
1.1.15
1.1.14
1.1.13
1.1.12
1.1.11
1.1.10
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.16
1.0.15
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A React primitive for building slim progress bars.
tanem/react-nprogress
tanem/react-nprogress
@tanem/react-nprogress
/
dist
/
NProgress.d.ts
9 lines
(8 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
React
from
'react'
;
import
{
Options
}
from
'./types'
;
import
{ useNProgress }
from
'./useNProgress'
;
type
Props
=
Options
& {
children
:
(
renderProps
:
ReturnType
<
typeof
useNProgress>
) =>
React
.
ReactElement
; };
export
declare
const
NProgress
:
React
.
FC
<
Props
>;
export
{};