UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

14 lines (13 loc) 965 B
import type { BeanCollection } from '../context/context'; import type { RefreshCellsParams } from '../interfaces/iCellsParams'; import type { GetCellRendererInstancesParams, ICellRenderer } from './cellRenderers/iCellRenderer'; export declare function setGridAriaProperty(beans: BeanCollection, property: string, value: string | null): void; export declare function refreshCells<TData = any>(beans: BeanCollection, params?: RefreshCellsParams<TData>): void; export declare function refreshHeader(beans: BeanCollection): void; export declare function isAnimationFrameQueueEmpty(beans: BeanCollection): boolean; export declare function flushAllAnimationFrames(beans: BeanCollection): void; export declare function getSizesForCurrentTheme(beans: BeanCollection): { rowHeight: number; headerHeight: number; }; export declare function getCellRendererInstances<TData = any>(beans: BeanCollection, params?: GetCellRendererInstancesParams<TData>): ICellRenderer[];