13 lines
684 B
TypeScript
13 lines
684 B
TypeScript
import * as React from 'react';
|
|
import { GridPrivateApiCommunity } from '../../../models/api/gridApiCommunity';
|
|
import { DataGridProcessedProps } from '../../../models/props/DataGridProps';
|
|
/**
|
|
* @requires useGridPagination (state) - can be after, async only
|
|
* @requires useGridColumns (state) - can be after, async only
|
|
* @requires useGridRows (state) - can be after, async only
|
|
* @requires useGridRowsMeta (state) - can be after, async only
|
|
* @requires useGridFilter (state)
|
|
* @requires useGridColumnSpanning (method)
|
|
*/
|
|
export declare const useGridScroll: (apiRef: React.MutableRefObject<GridPrivateApiCommunity>, props: Pick<DataGridProcessedProps, 'pagination'>) => void;
|