UNPKG

ag-grid-community

Version:

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

8 lines (7 loc) 602 B
import type { AgColumn } from '../entities/agColumn'; import type { AgProvidedColumnGroup } from '../entities/agProvidedColumnGroup'; import type { GridOptionsService } from '../gridOptionsService'; export declare function placeLockedColumns(cols: AgColumn[], gos: GridOptionsService): AgColumn[]; /** Callers gate on `colModel.hasMarryChildren`, so a married group always exists here — the * position-index Map is always needed, hence built eagerly. */ export declare function doesMovePassMarryChildren(allColumnsCopy: AgColumn[], gridBalancedTree: (AgColumn | AgProvidedColumnGroup)[]): boolean;