UNPKG
@nlabs/gothamjs
Version:
latest (0.16.4)
0.16.4
0.16.2
0.16.1
0.16.0
0.15.0
0.8.2
0.8.1
0.8.0
0.7.0
0.6.0
0.5.0
0.4.2
0.4.1
0.4.0
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.3
0.1.1
0.1.0
Platform
gothamjs.io
nitrogenlabs/gothamjs
@nlabs/gothamjs
/
lib
/
components
/
LazyLoader
/
LazyLoader.d.ts
9 lines
(8 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
Loader
}
from
'../Loader/Loader.js'
;
import
type
{
FC
}
from
'react'
;
export
interface
LazyLoadProps
{
component
:
any
;
loader
?:
typeof
Loader
;
props
?:
Record
<
string
,
unknown
>; }
export
declare
const
LazyLoad
:
FC
<
LazyLoadProps
>;