mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 06:22:55 +08:00
Merge pull request #24234 from Stevearzh/master
[react-virtualized]fixed GridCellProps parent type, which incompatible with CellMeasurer…
This commit is contained in:
2
types/react-virtualized/dist/es/Grid.d.ts
vendored
2
types/react-virtualized/dist/es/Grid.d.ts
vendored
@@ -9,7 +9,7 @@ export type GridCellProps = {
|
||||
isScrolling: boolean;
|
||||
isVisible: boolean;
|
||||
key: string;
|
||||
parent: Grid | List | Table;
|
||||
parent: typeof Grid | typeof List | typeof Table;
|
||||
rowIndex: number;
|
||||
style: React.CSSProperties;
|
||||
};
|
||||
|
||||
1
types/react-virtualized/index.d.ts
vendored
1
types/react-virtualized/index.d.ts
vendored
@@ -5,6 +5,7 @@
|
||||
// Konstantin Nesterov <https://github.com/wasd171>
|
||||
// Szőke Szabolcs <https://github.com/szabolcsx>
|
||||
// Kræn Hansen <https://github.com/kraenhansen>
|
||||
// Steve Zhang <https://github.com/Stevearzh>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.6
|
||||
|
||||
|
||||
Reference in New Issue
Block a user