File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -68,15 +68,15 @@ export type HeaderProps = {
68
68
} & RestProps ;
69
69
70
70
export type TableProps = {
71
- data : Data ,
72
- theme ?: Theme ,
73
- layout ?: Layout ,
74
- sort ?: Sort ,
75
- pagination ?: Pagination ,
76
- select ?: Select ,
77
- tree ?: Tree ,
78
- onInit ?: OnInitFunction ,
79
- children ?: (nodes : TableNode []) => React .ReactNode ,
71
+ data : Data ;
72
+ theme ?: Theme ;
73
+ layout ?: Layout ;
74
+ sort ?: Sort ;
75
+ pagination ?: Pagination ;
76
+ select ?: Select ;
77
+ tree ?: Tree ;
78
+ onInit ?: OnInitFunction ;
79
+ children ?: (nodes : ExtendedNode < TableNode > []) => React .ReactNode ;
80
80
} & RestProps ;
81
81
```
82
82
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export type TableProps = {
74
74
select ?: Select ;
75
75
tree ?: Tree ;
76
76
onInit ?: OnInitFunction ;
77
- children ?: ( nodes : TableNode [ ] ) => React . ReactNode ;
77
+ children ?: ( nodes : ExtendedNode < TableNode > [ ] ) => React . ReactNode ;
78
78
} & RestProps ;
79
79
80
80
// external data
You can’t perform that action at this time.
0 commit comments