UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

20 lines (18 loc) 683 B
import {AbstractColDef} from "./colDef"; import {IEventEmitter} from "../interfaces/iEventEmitter"; // Implemented by Column and ColumnGroup. Allows the groups to contain a list of this type for it's children. // See the note at the top of Column class. export interface ColumnGroupChild extends IEventEmitter { getUniqueId(): string; getActualWidth(): number; getMinWidth(): number; getLeft(): number; getOldLeft(): number; getDefinition(): AbstractColDef; getColumnGroupShow(): string; getParent(): ColumnGroupChild; isResizable(): boolean; setParent(parent: ColumnGroupChild): void; isEmptyGroup(): boolean; isMoving(): boolean; }