Merge pull request #33924 from michaeltnguyen/master

[@types/react-virtualized] Fix Table onRowClick types
This commit is contained in:
Sheetal Nandi
2019-03-20 15:50:27 -07:00
committed by GitHub
2 changed files with 2 additions and 6 deletions

View File

@@ -183,11 +183,7 @@ export class Column extends Component<ColumnProps> {
}
export type RowMouseEventHandlerParams = {
rowData: {
columnData: object;
id: string;
index: number;
};
rowData: any
index: number;
event: React.MouseEvent<any>;
};

View File

@@ -1,4 +1,4 @@
// Type definitions for react-virtualized 9.18
// Type definitions for react-virtualized 9.21
// Project: https://github.com/bvaughn/react-virtualized
// Definitions by: Kalle Ott <https://github.com/kaoDev>
// John Gunther <https://github.com/guntherjh>