interface GridDataSourceCache {
    clear: (() => void);
    get: ((key: GridGetRowsParams) => undefined | GridGetRowsResponse);
    set: ((key: GridGetRowsParams, value: GridGetRowsResponse) => void);
}

Properties

Properties

clear: (() => void)

Clear the cache.

get: ((key: GridGetRowsParams) => undefined | GridGetRowsResponse)

Get the cache entry for the given key.

Type declaration

set: ((key: GridGetRowsParams, value: GridGetRowsResponse) => void)

Set the cache entry for the given key.

Type declaration