UNPKG

ag-grid-community

Version:

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

10 lines (9 loc) 379 B
import { ColumnGroupShowType } from "../entities/columnGroup"; import { ProvidedColumnGroup } from "../entities/providedColumnGroup"; export interface IProvidedColumn { isVisible(): boolean; getInstanceId(): number; getColumnGroupShow(): ColumnGroupShowType | undefined; getId(): string; setOriginalParent(originalParent: ProvidedColumnGroup | null): void; }