ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
8 lines (7 loc) • 599 B
TypeScript
import type { BeanCollection } from '../context/context';
import type { InfiniteRowModel } from '../infiniteRowModel/infiniteRowModel';
import type { IClientSideRowModel } from '../interfaces/iClientSideRowModel';
import type { IServerSideRowModel } from '../interfaces/iServerSideRowModel';
export declare function _getClientSideRowModel(beans: BeanCollection): IClientSideRowModel | undefined;
export declare function _getInfiniteRowModel(beans: BeanCollection): InfiniteRowModel | undefined;
export declare function _getServerSideRowModel(beans: BeanCollection): IServerSideRowModel | undefined;