UNPKG

517 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 SelectableService {
6 private gridOptionsWrapper;
7 private groupSelectsChildren;
8 private isRowSelectableFunc;
9 init(): void;
10 updateSelectableAfterGrouping(rowNode: RowNode): void;
11 updateSelectableAfterFiltering(rowNode: RowNode): void;
12 private recurseDown(children, nextChildrenFunc);
13}