UNPKG

ag-grid

Version:

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

20 lines (19 loc) 670 B
// Type definitions for ag-grid v17.0.0 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> import { AbstractColDef } from "./colDef"; import { IEventEmitter } from "../interfaces/iEventEmitter"; 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; }