UNPKG
@dudulu/autolist
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
支持虚拟列表的自动滚动消息框
coderDulu/react-components
@dudulu/autolist
/
lib
/
types
/
index.d.ts
12 lines
(11 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/// <reference types="react" />
interface
propsType {
data
:
any
[];
itemHeight
:
number
;
height
?:
number
|
string
;
isAuto
?:
boolean
;
className
?:
string
;
style
?:
any
; }
export
default
function
virtualList
(
props
: propsType
):
JSX
.
Element
;
export
{};