7 lines
277 B
TypeScript
7 lines
277 B
TypeScript
import { GridRowsInternalCache } from '../hooks/features/rows/gridRowsState';
|
|
import { GridColumnsInternalCache } from '../hooks/features/columns/gridColumnsInterfaces';
|
|
export interface GridApiCaches {
|
|
rows: GridRowsInternalCache;
|
|
columns: GridColumnsInternalCache;
|
|
}
|