Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
fix(types): make rowData optional as it begins to be deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
benox3 committed Dec 18, 2020
1 parent dcf1da1 commit dd622e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ export type CellRendererArgs<ColumnData = {}> = {
columnData: ColumnData;
columnIndex: number;
dataKey: string;
rowData: any;
// @deprecated: Prefer getRowData with DataScrollerContext
rowData?: any;
rowIndex: number;
};
export type HeaderRendererArgs = {
Expand Down

0 comments on commit dd622e3

Please sign in to comment.