UNPKG

ag-grid-enterprise

Version:

AG Grid Enterprise Features

10 lines (9 loc) 514 B
import { IClientSideRowModel, ISetFilterParams, RowNode } from 'ag-grid-community'; export declare class ClientSideValuesExtractor { private readonly rowModel; private readonly filterParams; private readonly caseFormat; private readonly caseSensitive; constructor(rowModel: IClientSideRowModel, filterParams: ISetFilterParams, caseFormat: <T extends string | null>(valueToFormat: T) => typeof valueToFormat); extractUniqueValues(predicate: (node: RowNode) => boolean): (string | null)[]; }