react-virtualized
Version:
React components for efficiently rendering large, scrollable lists and tabular data
13 lines • 381 B
JavaScript
/*:: export interface CellMeasureCache {
hasFixedWidth(): boolean;
hasFixedHeight(): boolean;
has(rowIndex: number, columnIndex: number): boolean;
set(
rowIndex: number,
columnIndex: number,
width: number,
height: number,
): void;
getHeight(rowIndex: number, columnIndex?: number): number;
getWidth(rowIndex: number, columnIndex?: number): number;
}*/