react-virtualized-compat
Version:
Fork from `react-virtual` with react 19 compatability
14 lines • 395 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;
}*/
"use strict";