igniteui-react-grids
Version:
Ignite UI React grid components.
20 lines (11 loc) • 395 B
TypeScript
/* mustCoerceToInt */
/**
* Enumeration representing different paging modes for the grid.
* - Local: The grid will use local data to extract pages during paging.
* - Remote: The grid will expect pages to be delivered from a remote location and will only raise events during paging interactions.
*/
export declare enum GridPagingMode
{
Local,
Remote
}