forked from bvaughn/react-virtualized
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.js
43 lines (39 loc) · 788 Bytes
/
types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/** @flow */
export type CellDataGetterParams = {
columnData: ?any,
dataKey: string,
rowData: any,
};
export type CellRendererParams = {
cellData: ?any,
columnData: ?any,
dataKey: string,
rowData: any,
rowIndex: number,
};
export type HeaderRowRendererParams = {
className: string,
columns: Array<any>,
style: any,
};
export type HeaderRendererParams = {
columnData: ?any,
dataKey: string,
disableSort: ?boolean,
label: ?any,
sortBy: ?string,
sortDirection: ?string,
};
export type RowRendererParams = {
className: string,
columns: Array<any>,
index: number,
isScrolling: boolean,
onRowClick: ?Function,
onRowDoubleClick: ?Function,
onRowMouseOver: ?Function,
onRowMouseOut: ?Function,
rowData: any,
style: any,
key: string,
};