UNPKG

ag-grid-community

Version:

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

14 lines (13 loc) 791 B
import type { BeanCollection } from '../../context/context'; import type { AgProvidedColumnGroup } from '../../entities/agProvidedColumnGroup'; import type { ColumnEventType } from '../../events'; interface ColGroupState { groupId: string; open: boolean; headerName?: string | null; } export declare const _getColGroupState: (beans: BeanCollection) => ColGroupState[]; export declare const _setColGroupOpen: (beans: BeanCollection, key: AgProvidedColumnGroup | string | null | undefined, newValue: boolean, source: ColumnEventType) => void; export declare const _setColGroupState: (beans: BeanCollection, stateItems: ColGroupState[], source: ColumnEventType) => void; export declare const _resetColGroupState: (beans: BeanCollection, source: ColumnEventType) => void; export {};