File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ export interface BodyRowProps<RecordType> {
1515 renderIndex : number ;
1616 className ?: string ;
1717 style ?: React . CSSProperties ;
18- classNames ? : TableProps [ 'classNames' ] [ 'body' ] ;
19- styles ? : TableProps [ 'styles' ] [ 'body' ] ;
18+ classNames : TableProps [ 'classNames' ] [ 'body' ] ;
19+ styles : TableProps [ 'styles' ] [ 'body' ] ;
2020 rowComponent : CustomizeComponent ;
2121 cellComponent : CustomizeComponent ;
2222 scopeCellComponent : CustomizeComponent ;
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ export interface RowProps<RecordType> {
2121 cellComponent : CustomizeComponent ;
2222 onHeaderRow : GetComponentProps < readonly ColumnType < RecordType > [ ] > ;
2323 index : number ;
24- classNames ? : TableProps [ 'classNames' ] [ 'header' ] ;
25- styles ? : TableProps [ 'styles' ] [ 'header' ] ;
24+ classNames : TableProps [ 'classNames' ] [ 'header' ] ;
25+ styles : TableProps [ 'styles' ] [ 'header' ] ;
2626}
2727
2828const HeaderRow = < RecordType extends any > ( props : RowProps < RecordType > ) => {
You can’t perform that action at this time.
0 commit comments