UNPKG

ag-grid-community

Version:

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

9 lines (8 loc) 360 B
import type { AgColumn } from '../entities/agColumn'; export interface IShowRowGroupColsService { refresh(): void; getShowRowGroupCols(): AgColumn[]; getShowRowGroupCol(id: string): AgColumn | undefined; getSourceColumnsForGroupColumn(groupCol: AgColumn): AgColumn[] | null; isRowGroupDisplayed(column: AgColumn, colId: string): boolean; }