UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

8 lines (7 loc) 639 B
import type { BeanCollection } from '../context/context'; import type { IRowNode, RowPinnedType } from '../interfaces/iRowNode'; export declare function getPinnedTopRowCount(beans: BeanCollection): number; export declare function getPinnedBottomRowCount(beans: BeanCollection): number; export declare function getPinnedTopRow(beans: BeanCollection, index: number): IRowNode | undefined; export declare function getPinnedBottomRow(beans: BeanCollection, index: number): IRowNode | undefined; export declare function forEachPinnedRow(beans: BeanCollection, floating: NonNullable<RowPinnedType>, callback: (rowNode: IRowNode) => void): void;