UNPKG
@biorate/react-virtual-table
Version:
latest (3.2.2)
3.2.2
3.2.1
3.2.0
3.1.0
3.0.1
3.0.0
2.0.2
2.0.1
2.0.0
1.120.0
1.102.1
1.102.0
1.100.0
1.28.0
1.27.2
1.24.0
1.11.2
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
0.30.19
0.30.18
0.30.7
0.30.6
0.30.3
0.30.2
0.30.1
0.30.0
0.29.1
0.28.0
0.27.0
0.26.0
0.25.0
0.23.4
0.23.1
0.23.0
0.22.0
0.21.0
0.20.0
0.19.0
0.18.0
0.17.0
0.16.1
0.15.0
0.14.0
0.13.0
0.12.2
0.12.1
0.12.0
0.11.0
0.10.0
0.9.1
0.9.0
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
React virtual table
biorate.github.io/core
biorate/core
@biorate/react-virtual-table
/
dist
/
types
/
src
/
component.d.ts
12 lines
(11 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
*
as
React
from
'react'
;
import
{
Store
}
from
'./store'
;
export
declare
abstract
class
Component
extends
React.Component
<{
store
:
Store
; },
unknown
> {
props
: {
store
:
Store
; };
abstract
render
():
any
;
protected
get
store
():
Store
; }