ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
10 lines (9 loc) • 773 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';
import type { iViewportRowModel } from '../interfaces/iViewportRowModel';
export declare function _getClientSideRowModel(beans: BeanCollection): IClientSideRowModel | undefined;
export declare function _getInfiniteRowModel(beans: BeanCollection): InfiniteRowModel | undefined;
export declare function _getServerSideRowModel(beans: BeanCollection): IServerSideRowModel | undefined;
export declare function _getViewportRowModel(beans: BeanCollection): iViewportRowModel | undefined;