ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
7 lines (6 loc) • 476 B
TypeScript
import type { BeanCollection } from '../context/context';
import type { IRowNode } 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;