UNPKG

602 BTypeScriptView Raw
1// Type definitions for ag-grid v18.1.2
2// Project: http://www.ag-grid.com/
3// Definitions by: Niall Crosby <https://github.com/ag-grid/>
4import { RowNode } from "../entities/rowNode";
5export declare class FilterService {
6 private filterManager;
7 private gridOptionsWrapper;
8 private doingTreeData;
9 private postConstruct();
10 filterAccordingToColumnState(rowNode: RowNode): void;
11 filter(rowNode: RowNode, filterActive: boolean): void;
12 private setAllChildrenCountTreeData(rowNode);
13 private setAllChildrenCountGridGrouping(rowNode);
14 private setAllChildrenCount(rowNode);
15}