| 1 | // @flow |
| 2 | |
| 3 | export interface CellMeasureCache { |
| 4 | hasFixedWidth(): boolean; |
| 5 | hasFixedHeight(): boolean; |
| 6 | has(rowIndex: number, columnIndex: number): boolean; |
| 7 | set( |
| 8 | rowIndex: number, |
| 9 | columnIndex: number, |
| 10 | width: number, |
| 11 | height: number, |
| 12 | ): void; |
| 13 | getHeight(rowIndex: number, columnIndex?: number): number; |
| 14 | getWidth(rowIndex: number, columnIndex?: number): number; |
| 15 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…