UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

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