UNPKG

ag-grid-enterprise

Version:

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

11 lines (10 loc) 842 B
import type { BeanCollection, FindCellParams, FindCellValueParams, FindMatch, FindPart } from 'ag-grid-community'; export declare function findNext(beans: BeanCollection): void; export declare function findPrevious(beans: BeanCollection): void; export declare function findGetTotalMatches(beans: BeanCollection): number; export declare function findGoTo(beans: BeanCollection, match: number, force?: boolean): void; export declare function findClearActive(beans: BeanCollection): void; export declare function findGetActiveMatch(beans: BeanCollection): FindMatch | undefined; export declare function findGetNumMatches(beans: BeanCollection, params: FindCellParams): number; export declare function findGetParts(beans: BeanCollection, params: FindCellValueParams): FindPart[]; export declare function findRefresh(beans: BeanCollection): void;