In the React-Data-Grid
repo, I see
export interface DataGridProps {
columns: ColumnList;
(...)
rowRenderer?: React.ReactElement | React.ComponentType;
rowGroupRenderer?: React.ComponentType;
(...)
and
export default class ReactDataGrid extends React.Component<DataGridProps, DataGridState> { ... }
So in the definition of ReactDataGrid
we see the presence of rowGroupRenderer
prop.
However, this prop is not available in the package @types/react-data-grid
. There is a type called GridProps
there, but not DataGridProps
. Also, this GridProps
does not correspond to the exported GridProps
in the Grid.tsx
file in the React-Data-Grid
repo.
How are types in @types/data-grid-types updated? How is this kept in sync with the project?