UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

11 lines (9 loc) 185 B
import { GridLoaderStates } from "@etsoo/react"; /** * Grid data cache type */ export type GridDataCacheType<T> = { rows: T[]; state: GridLoaderStates<T>; creation: number; };