mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Merge pull request #33924 from michaeltnguyen/master
[@types/react-virtualized] Fix Table onRowClick types
This commit is contained in:
6
types/react-virtualized/dist/es/Table.d.ts
vendored
6
types/react-virtualized/dist/es/Table.d.ts
vendored
@@ -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>;
|
||||
};
|
||||
|
||||
2
types/react-virtualized/index.d.ts
vendored
2
types/react-virtualized/index.d.ts
vendored
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user